如何在ListView底部显示TextView Loading ...

时间:2014-09-27 05:47:20

标签: android android-listview

我有ListView符合整个布局(基本上是ListActivityListFragment)。我想在TextView底部滚动到底部时显示“正在加载...”ListView

例如,当我向下滚动到ListView的末尾时,它会在TextView上显示ListView并显示“正在加载...”,当它加载新数据时, ListView填充TextView已消失。

1 个答案:

答案 0 :(得分:1)

我假设你想滚动到列表视图的底部时显示一个祝酒词...你可以这样做就好了

if (yourListView.getLastVisiblePosition() == yourListView.getAdapter().getCount() -1 &&
    yourListView.getChildAt(yourListView.getChildCount() - 1).getBottom() <= yourListView.getHeight())
{
    //Make the Toast
    Toast.makeText(context, "Hey! list bottom reached", Toast.LENGTH_SHORT).show();

}

注意:context = yourActivityName.this