我遇到了我的xml佈局問題。 我想讓我的佈局使用xml的「simplemessage」將堅持頂部和「textchange」將填充和居中在屏幕中間,而「hiraganaconfbutton」將堅持在底部,我試圖引力和居中,但由於某種原因,它不工作LinearLayout重力
預先感謝您的幫助
這是我的XML佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical" >
<TextView
android:id="@+id/simplemessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/guess"
android:textSize="19sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<TextView
android:id="@+id/textchange"
android:layout_width="wrap_content"
android:layout_height="392dp"
android:text="@string/a"
android:textSize="60sp" />
</LinearLayout>
<Button
android:id="@+id/hiraganaconfbutton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/confirm" />
</LinearLayout>
能不能在相對佈局? – deadfish