我正在使用TableLayout。有100个项目可以滚动我在ScrollView中使用Tablelayout。但我必须检测用户是否已滚动到最后一行。如果用户已滚动到最后一个视图,则将向用户显示Toast消息。 但是如何知道用户已滚动到tablelayout的最后一行。我已经提到了TableLayout inside ScrollVie w的代码。
答案 0 :(得分:13)
如果新的滚动y位置+滚动视图高度> = tableview高度,则表示您已到达列表末尾。
要实现这一目标,您必须编写您的custiom scrollview。
Step-1 您必须创建扩展ScrollView的自定义滚动视图
package com.sunil;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ScrollView;
public class LDObservableScrollView extends ScrollView {
private LDObservableScrollViewListener scrollViewListener = null;
public LDObservableScrollView(Context context) {
super(context);
}
public LDObservableScrollView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public LDObservableScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public void setScrollViewListener(LDObservableScrollViewListener scrollViewListener) {
this.scrollViewListener = scrollViewListener;
}
@Override
protected void onScrollChanged(int x, int y, int oldx, int oldy) {
super.onScrollChanged(x, y, oldx, oldy);
if(scrollViewListener != null) {
scrollViewListener.onScrollChanged(this, x, y, oldx, oldy);
}
}
}
Step-2 创建一个侦听器以检测scrollchanged
package com.sunil; import LDObservableScrollView;
public interface LDObservableScrollViewListener {
void onScrollChanged(LDObservableScrollView scrollView, int x, int y, int oldx, int oldy);
}
布局xml中的Step-3 而不是ScrollView使用自定义滚动视图
<com.abc.LDObservableScrollView android:layout_width="fill_parent" android:layout_marginTop="1dip"
android:id="@+id/OLF_ScrollView" android:layout_height="fill_parent" android:background="@drawable/small_list_back">
<TableLayout android:layout_width="fill_parent" android:id="@+id/OLF_tableLayout_TableLayout" android:layout_height="fill_parent">
</TableLayout>
</com.abc.LDObservableScrollView>
步骤4 在您的活动类中或您要检测滚动事件的位置使用以下代码
public class DetectHere implements LDObservableScrollViewListener{
...
LDObservableScrollView scrollView = (LDObservableScrollView)view.findViewById(R.id.OLF_ScrollView);
scrollView.setScrollViewListener(this);
.....
@Override
public void onScrollChanged(LDObservableScrollView scrollView, int x,
int y, int oldx, int oldy) {
// TODO Auto-generated method stub
if((scrollView.getHeight()+y) >= tableLayout.getHeight()){
Log.e("Custom Listener ", "END OF LIST OCCURRED ::");
}
}
答案 1 :(得分:1)
这对我也有用,但是onScrollChanged上的y值永远不会高于我的三星galaxy tab 2 7“的高度。 但它适用于星系标签2 10.1“ 有什么想法吗?
[编辑] 我现在已经看到,当屏幕小于某个高度,例如1000px时会发生这种情况。因为当我在10.1“Galaxy标签2上使我的卷轴内容小于1200时,它停止工作以进行最大高度检测。
[编辑] 我找到了解决方案,它没有正确检测到滚动的大小,为了做到这一点,我所做的是以下内容:
protected void onScrollChanged(int horizontalScrollPosition, int verticalScrollPosition, int previousHorizontalScrollPosition, int previousVerticalScrollPosition) {
int scrollTotalHeight = this.getChildAt(0).getHeight() - super.getHeight();
if(_previousImage != null)
if(verticalScrollPosition <= 0) _previousImage.setVisibility(View.GONE);
if(_nextImage != null)
if(verticalScrollPosition >= scrollTotalHeight) _nextImage.setVisibility(View.GONE);
super.onScrollChanged(horizontalScrollPosition, verticalScrollPosition, previousHorizontalScrollPosition, previousVerticalScrollPosition);
}