您如何知道您的 ListView 是否有足够数量的项目以便它可以滚动?
例如,如果我的 ListView 上有 5 个项目,所有项目都将显示在一个屏幕上。但如果我有 7 个或更多,我的 ListView 开始滚动。我如何知道我的列表是否可以以编程方式滚动?
您如何知道您的 ListView 是否有足够数量的项目以便它可以滚动?
例如,如果我的 ListView 上有 5 个项目,所有项目都将显示在一个屏幕上。但如果我有 7 个或更多,我的 ListView 开始滚动。我如何知道我的列表是否可以以编程方式滚动?
当最后一个项目在屏幕上部分可见时,Diegosan 的答案无法区分。这是该问题的解决方案。
首先,必须先在屏幕上呈现 ListView,然后我们才能检查其内容是否可滚动。这可以通过 ViewTreeObserver 完成:
ViewTreeObserver observer = listView.getViewTreeObserver();
observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if (willMyListScroll()) {
// Do something
}
}
});
这是willMyListScroll()
:
boolean willMyListScroll() {
int pos = listView.getLastVisiblePosition();
if (listView.getChildAt(pos).getBottom() > listView.getHeight()) {
return true;
} else {
return false;
}
}
根据我对 Mike Ortiz 回答的评论,我认为他的回答是错误的:
getChildAt() 只计算屏幕上可见的孩子。同时,getLastVisiblePosition 根据 Adapter 返回索引。因此,如果 lastVisiblePosition 是 8,因为它是列表中的第 9 个项目,并且屏幕上只有 4 个可见项目,那么您将会崩溃。通过调用 getChildCount() 来验证它并查看。getChildAt 的索引与数据集的索引不同。看看这个:ListView getChildAt为可见的孩子返回null
这是我的解决方案:
public boolean isScrollable() {
int last = listView.getChildCount()-1; //last visible listitem view
if (listView.getChildAt(last).getBottom()>listView.getHeight() || listView.getChildAt(0).getTop()<0) { //either the first visible list item is cutoff or the last is cutoff
return true;
}
else{
if (listView.getChildCount()==listView.getCount()) { //all visible listitem views are all the items there are (nowhere to scroll)
return false;
}
else{ //no listitem views are cut off but there are other listitem views to scroll to
return true;
}
}
}
在 android 使用listView
. 但是,您绝对可以检测到这种后期渲染。
boolean willMyListScroll() {
if(listView.getLastVisiblePosition() + 1 == listView.getCount()) {
return false;
}
return true;
}
这样做是检查listView
可见窗口是否包含您的所有列表视图项目。如果可以,则listView
永远不会滚动,并且getLastVisiblePosition()
始终等于列表的 dataAdapter 中的项目总数。
AbsListView 包括:
/**
* Check if the items in the list can be scrolled in a certain direction.
*
* @param direction Negative to check scrolling up, positive to check scrolling down.
* @return true if the list can be scrolled in the specified direction, false otherwise.
* @see #scrollListBy(int)
*/
public boolean canScrollList(int direction);
您需要覆盖 layoutChildren() 并在其中使用它:
@Override
protected void layoutChildren() {
super.layoutChildren();
isAtBottom = !canScrollList(1);
isAtTop = !canScrollList(-1);
}
这是我为在列表视图的最后一行之后显示图片而编写的代码:
public class ShowTheEndListview
{
private ImageView the_end_view;
private TabbedFragRootLayout main_layout;
private ListView listView;
private float pas;
private float the_end_img_height;
private int has_scroll = -1;
public ShowTheEndListview(float height)
{
the_end_img_height = height;
pas = 100 / the_end_img_height;
}
public void setData(ImageView the_end_view, TabbedFragRootLayout main_layout, ListView listView)
{
this.the_end_view = the_end_view;
this.main_layout = main_layout;
this.listView = listView;
}
public void onScroll(int totalItemCount)
{
if(totalItemCount - 1 == listView.getLastVisiblePosition())
{
int pos = totalItemCount - listView.getFirstVisiblePosition() - 1;
View last_item = listView.getChildAt(pos);
if (last_item != null)
{
if(listHasScroll(last_item))
{
// Log.e(TAG, "listHasScroll TRUE");
}
else
{
// Log.e(TAG, "listHasScroll FALSE");
}
}
}
}
private boolean listHasScroll(View last_item)
{
if(-1 == has_scroll)
{
has_scroll = last_item.getBottom() > (main_layout.getBottom() - the_end_img_height - 5) ? 1 : 0;
}
return has_scroll == 1;
}
public void resetHasScroll()
{
has_scroll = -1;
}
}
这就是我过去检查的方式
if (listView.getAdapter() != null
&& listView.getLastVisiblePosition() == listView.getAdapter().getCount() - 1
&& listView.getChildAt(listView.getChildCount() - 1).getBottom() == listView.getBottom())
如果它给真,那么列表在底部
使用setOnScrollListener ,通过对OnScrollListener应用回调,您可以使用预定义的常量确定滚动是否发生并相应地处理这种情况。
boolean listBiggerThanWindow = appHeight - 50 <= mListView.getHeight();
Toast.makeText(HomeActivity.this, "list view bigger that window? " + listBiggerThanWindow, Toast.LENGTH_LONG)
.show();
if (listBiggerThanWindow) {
// do your thing here...
}
您可以通过在 View 上调用 post(Runnable) 来获取 onCreate() 中的尺寸。