我有一個表格佈局,我已經在XML文件中靜態地聲明瞭一個按鈕。我在程序中動態添加行。我希望將按鈕設置在表格佈局的最後。 我嘗試過使用android:layout_gravity =「bottom」,但這並沒有幫助。在佈局的最底部設置按鈕 - Android 2.2
任何解決方案?
這是我的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>
什麼是你的父母佈局 – 2012-04-21 03:28:57
滾動型以下。我不認爲這是重要的。但仍然。 – CamelCase 2012-04-21 03:34:35
你可以發佈你的XML文件。如果滾動視圖它必須包含一些佈局? – 2012-04-21 03:37:16