6

我正在创建一个具有无限滚动效果的简单列表视图。当我下载新数据时,我想在列表视图的底部显示一个不确定的进度条(如 gmail 应用程序)。

有2个解决方案

  • 将进度条添加为我的列表视图的一项,但我不喜欢这个解决方案
  • 在我的列表视图底部添加进度条并显示/隐藏它

它会给出类似的东西

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <ListView
        android:id="@+id/List_list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <ProgressBar
        android:id="@+id/trobber"
        android:layout_below="@+id/List_list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:indeterminate="true" >
    </ProgressBar>

</RelativeLayout>

但是当我的列表长于我的屏幕大小时(换句话说,当我必须滑动时),不会显示进度条。

4

2 回答 2

7

改用 yourListView。addFooterView(放置你的 ProgressBar 视图)

于 2013-06-13T21:32:18.010 回答
2

详细说明,这里是你如何做到的:

A. 创建一个布局xml文件,命名为progress_bar_footer.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent">

    <ProgressBar
        android:layout_width="30dip"
        android:layout_height="30dip"
        android:layout_gravity="center"
        android:indeterminateTint="@android:color/holo_green_light"
        android:id="@+id/progressBar5"/>

</LinearLayout>

B. 在你的活动中,

View mProgressBarFooter = ((LayoutInflater)this.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE))
            .inflate(R.layout.progress_bar_footer, null, false);

C. 使用它。

listView.addFooterView(mProgressBarFooter); //or
listView.removeFooterView(mProgressBarFooter);

归功于John Moses 的页面

于 2016-09-26T15:20:19.240 回答