Со следующей структурой:
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<AppGridView
android:id="@+id/appGridView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
У меня есть AppGridView внутри NestedScrollView, который должен использовать метод onTouchEvent для захвата движения, но когда он находится внутри NestedScrollView, у AppGridView onTouchEvent:
1) Only called when the is ACTION_DOWN or ACTION_MOVE to left or right
2) When is ACTION_MOVE to top or bottom, it's never called
3) if only ACTION_DOWN or ACTION_DOWN + ACTION_MOVE to the sides, then it calls ACTION_UP
Я уже пытался отключить nestedScrollView с помощью этих методов (внутри класса AppGridView, вызывается для ACTION_DOWN onTouch, а затем для ACTION_UP), но не будет работать:
private void onTouchStarted() {
nestedScrollView.startNestedScroll(ViewCompat.SCROLL_AXIS_HORIZONTAL| ViewCompat.SCROLL_AXIS_VERTICAL);
}
private void onTouchEnd() {
nestedScrollView.stopNestedScroll();
}
Мне также нужно было вставить это в упражнение, чтобы завершить движение, которое AppGridView сохранял ...
nestedScrollView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_UP) {
appGridView.actionMoveUp();
}
return false;
}
});
Есть ли способ отключить прокрутку NestedScrollView? Или, может быть, удалить все способы, которыми это может быть сфокусировано ...