gpt4 book ai didi

android - textAlignment 中心不适用于 jellyBean

转载 作者:数据小太阳 更新时间:2023-10-29 02:48:55 27 4
gpt4 key购买 nike

我制作了一个 XML,其中包含一个 TextView,在以下代码中有一个 textAlignement:center:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1">
<Button
android:layout_width="0px"
android:layout_weight="0.24"
android:text="gestion"
android:layout_height="wrap_content"
android:id="@+id/GoGestion"/>

<View
android:layout_width="0px"
android:layout_weight="0.01"
android:layout_height="match_parent"></View>
<TextView
android:layout_width="0px"
android:layout_weight="0.5"
android:layout_height="wrap_content"
android:text="Creation Sav"
android:textSize="40dp"
android:layout_gravity="center"
android:textAlignment="center"/>

<View
android:layout_width="0px"
android:layout_weight="0.01"
android:layout_height="match_parent"></View>
<Button
android:layout_width="0px"
android:layout_weight="0.24"
android:text="Archive"
android:layout_height="wrap_content"
android:id="@+id/GoArchive"/>
</LinearLayout>

事实是,我的 textView 不是以具有 4.1.2 版本 (jellybean) 的平板电脑为中心,而是以另一个平板电脑 4.4.2 (kitkat) 为中心。
我的应用程序使用 minSdkVersion 15 编译,所以 jellybean 是更新的。文档中没有任何地方指定 Jellybean 不运行 textAlignement。

为什么它在 jellylbean 上不起作用,我该如何解决这个问题?

最佳答案

您可以在 TextView 中设置它

 android:gravity="center"

Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.

请检查 Gravity and layout_gravity on Android 。希望这会有所帮助。

关于android - textAlignment 中心不适用于 jellyBean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34945033/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com