我有這個layout.xml,我更改了按鈕的「layout_gravity」屬性,但無論我分配哪個值,兩個按鈕都放置在linearlayout容器的左側。我想他們是居中對齊(註釋是教師的原因,但我把他們以防萬一,他們可能是問題):按鈕並不朝向線性佈局的中心
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
xmlns:android="http://schemas.android.com/apk/res/android">
<!--root element must specify the Android resource XML namespace -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"
android:text="@string/question_text"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/true_button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/false_button"
android:layout_gravity="right" />
<!--The XML elements :: <string name="false_button">False</string>
will have to be defined in strings.xml-->
</LinearLayout>
你應該接受你發現的有用的任何答案,這樣其他的Google用戶也得到它的好處.. :) –