我做了一個XML其中包括具有下面的代碼textAlignement:center
一個TextView
:textAlignement中心不工作的豆形軟糖
<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不運行textAlignement。
爲什麼它不能在jelylbean上工作,我該如何解決這個問題?
利用重力更多信息http://developer.android.com/reference/android/widget/TextView.html# attr_android%3agravity – Madhur
但我的TextView的重力已經居中,我試圖刪除alignement,它不會改變任何東西 – RiddlerNewComer
老兄不layout_gravity你需要設置android:gravity =「center」 – Madhur