我正在做 Derek Banas 的 Android 开发教程 11,我只是想将保存按钮移到右侧。
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
...
<TableRow
android:id="@+id/tableRow7"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/saveButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="@string/save_button" />
</TableRow>
</TableLayout>
这是它的样子:
我希望这个按钮在右侧,为什么它会尴尬地停在屏幕中间?