我正在尝试将一个ProgressBar视图放在ListView的ListView下面。我希望它始终低于listView中的最后一行。
只要列表(在运行时由适配器填充)未超出屏幕,就会出现放置在LinearLayout中的ProgressBar。一旦列表大于屏幕,ProgressBar就不再可见。
布局xml如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/db1_root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<!-- Title bar -->
<LinearLayout
style="@style/TitleBar" >
<TextView
style="@style/TitleBarText"
android:text="Some title text" />
<ImageButton
style="@style/TitleBarAction"
android:contentDescription="@string/description_search"
android:src="@drawable/title_search" />
</LinearLayout>
<!-- Content -->
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent" >
<ListView
android:divider="@drawable/category_item_divider"
android:dividerHeight="@dimen/list_divider_height"
android:layout_height="wrap_content"
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_weight="1" />
<TextView
android:id="@+id/android:empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/category_no_items" />
</LinearLayout>
<!-- Progress bar -->
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content" >
<ProgressBar
android:id="@+id/productlist_progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
对于LinearLayout,这是不可能的?任何帮助赞赏。
答案 0 :(得分:12)
您应该使用以下内容添加页脚:
list.addFooterView(footerView);
或手动完成,但考虑使用相对布局,比线性布局强大得多。然后将您的页脚放在列表下方,或者更好的是,将您的列表和放在您的页脚视图上方。