我做的,我很取出由JSON數據到ListView控件的應用程序時如何解決底部標籤欄,但每當我獲取更多的記錄到列表視圖我的底部標籤欄不來就隱藏在那個時候,但如果我有少量的記錄在列表視圖,如: - 3個或4項行只的話,我能看到我的記錄,當我與靜態列表視圖,在這一點上工作,因爲我得到我沒有得到同樣的問題既一大批具有固定的底部標籤欄的記錄,所以可能我知道可能是什麼問題呢?與列表視圖
Q
與列表視圖
1
A
回答
1
有下面的步驟,你可以遵循:
使用相對佈局。
對齊底欄的底部爲:
android:layout_above="@+id/bottomBarId"
它只能與相對佈置工作:上面底欄爲
android:layout_alignParentBottom="true"
集列表視圖。
希望它會有所幫助。
1
看到這一點,列表和bottom_bar的父佈局應該是
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/bottombar" >
</ListView>
<LinearLayout
android:id="@+id/bottombar"
android:layout_width="fill_parent"
android:layout_height="70dip"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:gravity="center" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Bottom Tab bar"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
</RelativeLayout>
相關問題
- 1. 與列表視圖
- 2. 列表視圖與圖像
- 3. 列表視圖與jsoup和2列表視圖中的一行列表視圖
- 4. 列表視圖與同一視圖
- 5. 列表視圖與多個列表
- 6. 列表視圖列表與onPostExecute
- 7. JSON與列表視圖
- 8. 與Edittextbox的列表視圖
- 9. 列表視圖與數組
- 10. InflateException與HoloEverywhere列表視圖
- 11. 列表視圖與按鈕
- 12. Expandandable列表視圖與根
- 13. 列表視圖與電報
- 14. 列表視圖與checkedtextview
- 15. ANDROID:SQLite的與列表視圖
- 16. 問題與列表視圖
- 17. 與Android的列表視圖
- 18. Tableviewout與列表視圖
- 19. SharedPreferences與列表視圖
- 20. Android:使列表視圖與列表視圖一起瀏覽
- 21. Viewpager與列表視圖和列表視圖標題bug
- 22. 列表視圖與3列 - Android
- 23. 列表視圖與圖像和文字
- 24. 與圖像自定義列表視圖
- 25. 列表視圖中的列表視圖
- 26. 列表視圖setOnClickListener從列表視圖
- 27. 列表框/列表視圖與Windows圖標
- 28. 列表視圖
- 29. 列表視圖
- 30. 列表視圖
發表您的xml文件 –
檢查你的佈局,列表視圖可能是重疊的標籤欄視圖。 –