ユーザーがScrollViewの最後にいるときに、そのユーザーを検出して新しいアイテムを読み込みたいとします。私はそれをしましたが、私が使っている機能は古いバージョンのAndroidでは動作しないようです。ScrollViewのsetOnScrollChangeListener:エラー
08-19 21:27:35.135 26504-26504/com.histoire_horreur E/AndroidRuntime: FATAL EXCEPTION: main
java.lang.NoClassDefFoundError: com.histoire_horreur.Listener.ScrollListener
at com.histoire_horreur.MainActivity.createView(MainActivity.java:59)
at com.histoire_horreur.MainActivity.onCreate(MainActivity.java:47)
at android.app.Activity.performCreate(Activity.java:5122)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1150)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2315)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2403)
at android.app.ActivityThread.access$600(ActivityThread.java:165)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1373)
at android.os.Handler.dispatchMessage(Handler.java:107)
at android.os.Looper.loop(Looper.java:194)
at android.app.ActivityThread.main(ActivityThread.java:5391)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)
私が話したように、このコードは、Androidの一部のバージョンのために正常に動作します:私はこのエラーを持っている
@TargetApi(Build.VERSION_CODES.M)
public class ScrollListener implements View.OnScrollChangeListener {
ScrollingActivity context;
public ScrollListener(ScrollingActivity context) {
this.context = context;
}
@Override
public void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {
ScrollView scrollView = (ScrollView) v;
View view = (View) scrollView.getChildAt(scrollView.getChildCount() - 1);
int diff = (view.getBottom() - (scrollView.getHeight() + scrollY));
int oldDiff = (view.getBottom() - (scrollView.getHeight() + oldScrollY));
// Si on a atteint le bas de la scrollView et qu'on était en train de descendre
if(diff == 0 && oldDiff > 0) {
context.endOfScroll(); // function I call to load data...
}
}}
:その後、
scrollView = (ScrollView) findViewById(R.id.scrollView);
scrollView.setOnScrollChangeListener(new ScrollListener(this));
:
私はこのコードを持っていますしかし、私のWiko 4.2.2ではそうではありません。 私のエラーはここのものと同じです:https://forums.xamarin.com/discussion/62241/problem-setting-on-scroll-listener-to-android-horizontal-scroll-view-class-not-found-exception 解決方法ViewTreeObserverを使用することができましたが、スクロールが最下部にあることを検出できません。私はこれを行うことを試みた:
scrollView = (ScrollView) findViewById(R.id.scrollView);
scrollView.getViewTreeObserver().addOnScrollChangedListener(new ViewTreeObserver.OnScrollChangedListener() {
@Override
public void onScrollChanged() {
// How to get X, Y, Old X and Old Y ?
}
});
をしかし、私はscrollX、scrollY、oldScrollXとoldScrollYを取得することはできません。
Androidのすべてのバージョンで動作させる方法をご存知ですか?