我有一个表格布局,其中我在 XML 文件中静态声明了一个按钮。我在程序中动态添加行。我希望将按钮设置在表格布局的最后。我尝试使用 android:layout_gravity="bottom" 这样做,但这没有帮助。
有什么解决办法吗?
这是我的 XML
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:scrollbars="horizontal|vertical"
android:scrollbarStyle="outsideInset" >
<TableLayout
android:id="@+id/table"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/back"
android:layout_gravity="bottom"
/>
</TableLayout>
</ScrollView>