回答
你使用它?
android:orientation="vertical"
請發表您的代碼,
<的LinearLayout 的xmlns:機器人= 「http://schemas.android.com/apk/res/android」 機器人:取向= 「垂直」 機器人:layout_width = 「match_parent」 機器人:layout_height = 「match_parent」 機器人:背景= 「@繪製/ BG」> \t <按鈕 機器人:layout_width = 「match_parent」 機器人:ID = 「@ + ID/badrul」 機器人:文本= 「Badrul鬆革蠟染」 機器人:layout_height = 「wrap_content」 android:layout_alignParentTop =「true」 android:layout_centerHorizontal =「true」> LinearLayout> 無法列出所有的按鍵代碼,空間不足。 – 2012-01-13 12:24:44
看來你已經得到了正確的答案。恭喜! – peanut 2012-01-13 16:40:30
謝謝!是的,我做過 – 2012-01-14 05:10:34
你包裹一切ScrollView
:
<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ScrollView>
更多信息http://developer.android.com/reference/android/widget/ScrollView.html
您是否使用了LinearLayout
也許包含的按鈕?或者ScrollView
中沒有包含的任何其他佈局?很可能你的按鈕被繪製出來,它們就在屏幕之外。
包裝你的佈局在ScrollView
像這樣:
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:scrollbars="none" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- your buttons here -->
</LinearLayout>
</ScrollView>
這使得佈局滾動的,所以你可以只向下滾動,看到你的按鈕。
哦,是的,這對我有用。感謝您指出! – 2012-01-13 12:47:20
- 1. Android的佈局修復
- 2. 表格佈局:已修復問題
- 3. 修復佈局
- 4. 如何在android中修復該佈局
- 5. 如何在Android中修復XML佈局?
- 6. CSS div佈局修復
- 7. 修復佈局問題
- 8. 修復佈局的大小
- 9. 動態佈局修改Android
- 10. Android佈局:可重複使用的組件UI是否可能?
- 11. 是否可以將android佈局貼在另一個佈局上?
- 12. Android佈局是否像HTML/CSS佈局一樣工作?
- 13. 在android中是否有任何類似流佈局的佈局?
- 14. Android的佈局是否大於大?
- 15. Android - 佈局是否使用XML
- 16. Android佈局複雜按鈕
- 17. Android(複雜)日曆佈局
- 18. Android的複雜佈局
- 19. Android複雜表格佈局
- 20. Android佈局佈局(而不是查看)
- 21. GWT佈局:我將如何修復此佈局(DockPanel)?
- 22. 修復plot(fevd())函數的佈局
- 23. 自動佈局旋轉修復位置
- 24. 如何修復此網頁佈局?
- 25. 不能修復CSS佈局溢出
- 26. 如何修復iPhone6的佈局Xcode7
- 27. 如何修復表格佈局?
- 28. 修復佈局imageview和可滾動textview
- 29. 需要幫助修復佈局
- 30. Android對話框佈局破解如何修復?
您使用哪種佈局? – Ghost 2012-01-13 09:51:19
請粘貼您的XML,以便我們提供幫助。 – 2012-01-13 09:51:48
使用LinearLayout和