JSON から ListView にデータをフェッチするアプリケーションを作成していますが、リストビューにさらにレコードをフェッチするたびに、下部のタブ バーが非表示になりませんが、リストビューに少数のレコードがある場合は次のようになります。 3 つまたは 4 つのアイテム行のみ、その後、レコードを表示できます。その時点で静的リストビューを使用していたとき、同じ問題は発生しませんでした。私は何が問題なのか知っていますか?
質問する
1414 次
2 に答える
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>
于 2012-10-19T04:44:53.343 に答える
1
従うことができる次の手順があります。
相対レイアウトを使用します。
次のように、下のバーを下に揃えます。
android:layout_alignParentBottom="true"
ボトムバーの上のリストビューを次のように設定します。
android:layout_above="@+id/bottomBarId"
相対レイアウトでのみ機能します。
それが役立つことを願っています。
于 2012-10-19T04:42:03.243 に答える