NestedScrollView内には、水平方向にスクロール可能なRecyclerビューがいくつかあります。リサイクラビューの垂直スクロールのみを無効にし、この垂直タッチを親NestedScrollViewに渡すにはどうすればよいですか?Recycler NestedScrollView内のビュー
0
A
答えて
0
は、私はあなたがRecyclerView
ためのタッチリスナーを設定すると言うと、それは水平または垂直スクロールであるかどうかを検出したい。この
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="@color/toolbarScrim"
app:title=" "
app:expandedTitleTextAppearance="@android:color/transparent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<com.android.volley.toolbox.NetworkImageView
android:id="@+id/ArticleImg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/article_img"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffe5e5e5"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.global.jet.global.BizForum.ArticleView"
tools:showIn="@layout/activity_article_view">
<RelativeLayout
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/view2">
<ImageView
android:layout_margin="10dp"
android:layout_width="64dp"
android:layout_height="64dp"
android:id="@+id/imageView9"
android:background="@drawable/rv"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
/>
<TextView
android:layout_marginLeft="10dp"
android:textColor="@color/link"
android:textSize="18sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Medium Text"
android:id="@+id/ArticlePostName"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView9"
android:layout_toEndOf="@+id/imageView9" />
<ImageView
android:layout_marginRight="10dp"
android:layout_width="20dp"
android:layout_height="20dp"
android:src="@mipmap/ic_add_black_18dp"
android:id="@+id/button3"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<TextView
android:layout_marginLeft="10dp"
android:textSize="14sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="31 oct 2015,12:49-"
android:id="@+id/ArticleDate"
android:layout_below="@+id/ArticlePostName"
android:layout_toRightOf="@+id/imageView9"
android:layout_toEndOf="@+id/imageView9" />
<TextView
android:layout_marginLeft="10dp"
android:textColor="@color/link"
android:textSize="14sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Medium Text"
android:id="@+id/ArticleDes"
android:layout_below="@+id/ArticleDate"
android:layout_toRightOf="@+id/imageView9"
android:layout_toEndOf="@+id/imageView9" />
<ImageView
android:background="@drawable/clock_ic"
android:textSize="14sp"
android:layout_width="18dp"
android:layout_height="18dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Small Text"
android:id="@+id/textView15"
android:layout_alignTop="@+id/ArticleDate"
android:layout_toRightOf="@+id/ArticleDate"
android:layout_toEndOf="@+id/ArticleDate" />
<TextView
android:layout_marginLeft="5dp"
android:textSize="14sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="3 min read"
android:id="@+id/ArticleTime"
android:layout_alignTop="@+id/textView15"
android:layout_toRightOf="@+id/textView15"
android:layout_toEndOf="@+id/textView15" />
<View
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/grey_333"
android:id="@+id/textView17"
android:layout_below="@+id/imageView9"
android:layout_alignLeft="@+id/imageView9"
android:layout_alignStart="@+id/imageView9"
android:layout_alignRight="@+id/button3"
android:layout_alignEnd="@+id/button3" />
</RelativeLayout>
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
<android.support.v7.widget.RecyclerView
android:id="@+id/scrollableview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
0
を試してみてください。水平の場合はtrue
を返し、垂直の場合はfalse
を返します。
RecyclerView rv = findViewById(R.id.recyclerView);
rv.setOnTouchListener(new View.OnTouchListener {
public boolean onTouch(View v, MotionEvent event) {
// your logic here
}
});
リファレンス - View.OnTouchListener
関連する問題
- 1. Recyclerビュー内のNestedScrollviewはスクロールしません
- 2. フラグメント内のRecyclerビュー
- 3. フラグメント内のRecyclerビュー
- 4. Recyclerビューの更新方法Recyclerビューの内部?
- 5. Android Recyclerビュー(内側の高さで)
- 6. NestedScrollView内のNestedScrollView内部NestedScrollView:内側のNestedScrollViewはスクロールしません
- 7. recycledviewとnestedscrollviewのビュー
- 8. エスプレッソのスクロールRecyclerビュー
- 9. RecyclerビューnotifyItemInserted空白
- 10. FirebaseベースのAndroid Recyclerビュー
- 11. RecyclerビューnotifyDataSetInvalidated()相当の
- 12. RecyclerView NestedScrollView内のScrollListener
- 13. ビューをRecyclerビューに挿入する
- 14. ネストされたScrollview + Recyclerビュー
- 15. NestedScrollView内のRecyclerViewのScrollListener?
- 16. スティッキースクロールビュー内でRecyclerビューを使用すると動作しない
- 17. Recyclerビューの更新の問題
- 18. HorizenatlのRecyclerビューの使用方法スクロール
- 19. RecyclerViews NestedScrollView内でのスクロール
- 20. Google Map NestedScrollView内のフラグメントスクロール
- 21. Recyclerビューnullオブジェクト参照のsetLayoutManager
- 22. NestedScrollViewのみスクロールNestedScrollView
- 23. Android EspressoがRecyclerのアイテムをクリックする方法Recycler Viewの中のビュー
- 24. Recyclerビューの各項目のビューへのアクセス
- 25. Recycler View - 1つのビューが別のビューを開く
- 26. NestedScrollView、RecyclerView(水平)、CoordinatorLayout内
- 27. GCMを使用したAndroid - Recyclerビュー
- 28. Recyclerビュー応答していません
- 29. ダイアログRecyclerビューで開くボタンをクリック
- 30. Recyclerビューで新しいアクティビティを開く
はい、これが関係するロジックがあります。しかし、いくつかのコードで私を助けてくれますか? – DevAndroid