我在使我的按鈕文本在我的Android應用程序中正確對齊時遇到了一些麻煩。目前,我的按鈕文本與按鈕中心的文本左側對齊,如圖所示:中心右對齊按鈕 - Android
|空白|文本在這裏|
我曾嘗試使用重力=「center_horizontal | center_vertical」無濟於事。我已經嘗試添加一個新的按鈕到一個完全獨立的項目,這仍然成立。它也在LinearLayouts和RelativeLayouts中做到這一點。
在此先感謝您的幫助。
這是一個佈局文件。但是它在所有這些方面都做得很好,包括其他項目。此外,此佈局上的所有按鈕都有相同的問題。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:text="@string/history_delete_record"
android:id="@+id/History_Delete_Record"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal|center_vertical"></Button>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/History_Delete_Record"
android:layout_alignLeft="@+id/History_Delete_Record"
android:id="@+id/History_Open_Details"
android:text="@string/history_open_record"></Button>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/History_Cancel"
android:text="@string/cancel"
android:layout_below="@+id/History_Open_Details"
android:layout_alignLeft="@+id/History_Open_Details"
android:layout_marginTop="19dp">
</Button>
</RelativeLayout>
。 – cren90
你可以發佈相關的佈局XML嗎? –
是的,請添加您的佈局文件。 – Orest