我有ListView
符合整个布局(基本上是ListActivity
或ListFragment
)。我想在TextView
底部滚动到底部时显示“正在加载...”ListView
。
例如,当我向下滚动到ListView
的末尾时,它会在TextView
上显示ListView
并显示“正在加载...”,当它加载新数据时, ListView
填充TextView
已消失。
答案 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