0
我有一個線性佈局裏面的桌面佈局 充氣後表中的3個按鈕最後一個按鈕離開屏幕 我的意思是3個按鈕不適合屏幕寬度 我該怎麼辦?Android:按鈕離開屏幕邊緣
這裏是代碼
<TableLayout
android:id="@+id/buttonTableLayout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:stretchColumns="0,1,2"
android:layout_weight="1">
<TableRow
android:id="@+id/tableRow0"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TableRow>
</TableLayout>
的認爲這是我使用佈局充氣服務,就像你說的 我不能添加按鈕和按鍵的文字是不同勢(長度)每次我啓動應用程序(我從字符串數組中挑選一些隨機文本) - 就像一個測驗 – Nima
正如我所說,你也可以通過編程來實現。看到這個問題:http://stackoverflow.com/questions/3224193/set-the-layout-weight-of-a-textview-programmatically – rubengees