2017-08-02 52 views
0

我米有三個片段一ViewPager組水平Recyclerview片段中的一個,一個片段具有的東西,水平滾動,但是當m試圖把它的滾動滑動頁面如何ViewPager

+0

你嘗試過什麼?請發佈您的代碼 – humazed

回答

0

如果你需要一個水平RecyclerView你只需要一個該RecyclerView添加到您的片段,並使用LinearLayoutManager.HORIZONTAL

LinearLayoutManager layoutManager 
= new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false); 

RecyclerView myList中=(RecyclerView)findViewById(R.id.my_recycler_view); myList.setLayoutManager(layoutManager);

OR


只添加這RecyclerView在你的片段

<android.support.v7.widget.RecyclerView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal" 
    app:layoutManager="android.support.v7.widget.LinearLayoutManager" /> 
+0

我的問題是如何設置ViewPager作爲我滾動RecyclerView它滾動ViewPager屏幕 –