我沒有使用ListView。我必須在屏幕末尾顯示頁腳文本,而不是在佈局的所有項目下。我該怎麼做?頁尾在屏幕末尾
Q
頁尾在屏幕末尾
0
A
回答
0
你可以做這樣的事情
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:orientation="horizontal" >
<Button
android:id="@+id/frag1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="Button" />
<Button
android:id="@+id/frag2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="Button" />
</LinearLayout>
</RelativeLayout>
0
使用線性佈局,重量:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/lnrContainer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:id="@+id/lnrFooter"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>
0
我認爲你可以使用的RelativeLayout,並添加layout_alignParentBottom = 「true」 將您的頁腳視圖。
相關問題
- 1. TextView在屏幕末尾被截斷
- 2. Selenium error在頁面末尾
- 3. iTextSharp - 查找頁面末尾
- 4. 語義UI頁腳末尾
- 5. 網格視圖在屏幕末尾顯示圖像
- 6. Itextsharp在頁面末尾插入頁腳
- 7. 在URL末尾處理尾隨斜槓
- 8. JavaScript未在頁面末尾觸發
- 9. telerik kendo和bunble MVC在頁面末尾
- 10. 把js放在頁面的末尾
- 11. 如何在頁面末尾加載javascripts
- 12. 頁腳不粘到頁面末尾
- 13. 尾行字尾仍然在第一行的末尾給出0920
- 14. 從URL的末尾刪除尾部'/'
- 15. 在末尾插入鏈表
- 16. Сharacter在INPUT的末尾
- 17. MySQL插入在表末尾
- 18. ¬在vim每行的末尾
- 19. 寫在xml的末尾
- 20. Ellipsize TextView在單詞末尾
- 21. 可選/在URL的末尾
- 22. 在文件末尾寫入
- 23. android在末尾添加'...'textview
- 24. ?在捕獲組的末尾
- 25. 從行的末尾在linux
- 26. 將頁面移動到PDF的末尾
- 27. 將邊框延伸到頁面末尾
- 28. 動態滾動到頁面末尾
- 29. 頁面末尾的靜態塊Magento
- 30. 頁面末尾的空白處
使用'FrameLayout'並將'Layout'設置爲'gravity =「Bottom」' –
這是一個非常普遍的問題。這表明您在提問之前沒有研究過任何問題。如果您嘗試搜索而不是直接要求它在SO –
請參閱此鏈接: http://stackoverflow.com/questions/13277785/how-to-have-a-fixed-footer-with-scrollview-in- android 希望這會有幫助.. – anju