兩個RecyclerView的聯(lián)動問題

效果展示


滑動效果:
當(dāng)向上滑動左邊或著右邊的view時刻蚯,另一個view也跟著滑動互墓;右邊view可以單獨的左右滑動并帶陰影效果。

  • 導(dǎo)入框架
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'

1缤谎、我們首先在xml里進(jìn)行布局抒倚,布局如下:

<LinearLayout 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/llMain"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#2A2D4F"
    android:orientation="horizontal"
    tools:context=".tworecycler.TwoRecyActivity">
    <android.support.v7.widget.CardView
        android:id="@+id/cardView"
        android:layout_width="@dimen/d120"
        android:layout_height="wrap_content"
        app:cardBackgroundColor="@color/c2A2D4F"
        app:contentPaddingRight="0dp"
        app:cardElevation="0dp">
        <LinearLayout
            android:layout_width="@dimen/d120"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="@dimen/d28"
                android:background="#2A2D4F"
                android:gravity="center_vertical"
                android:paddingLeft="@dimen/d8"
                android:text="合約"
                android:textColor="#6A798E"
                android:textSize="@dimen/f13" />

            <android.support.v7.widget.RecyclerView
                android:id="@+id/left_recycler"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scrollbars="none"
                android:overScrollMode="never"/>
        </LinearLayout>
    </android.support.v7.widget.CardView>

    <com.json.itemdecoration.tworecycler.SwapScrollView
        android:id="@+id/rightScrollView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:scrollbars="none">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="@dimen/d28"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/tvNewPrice"
                    android:layout_width="@dimen/d70"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="最新價"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvUpDown"
                    android:layout_width="@dimen/d60"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="漲跌"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvBuy"
                    android:layout_width="@dimen/d80"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="報買"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvBuyNums"
                    android:layout_width="@dimen/d60"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="手?jǐn)?shù)"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvBuyDate"
                    android:layout_width="@dimen/d60"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="時間"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvSell"
                    android:layout_width="@dimen/d80"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="報賣"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvSellNums"
                    android:layout_width="@dimen/d60"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="手?jǐn)?shù)"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvSellDate"
                    android:layout_width="@dimen/d60"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:gravity="center_vertical|right"
                    android:text="時間"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />

                <TextView
                    android:id="@+id/tvYTDPut"
                    android:layout_width="@dimen/d80"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/d5"
                    android:layout_marginRight="@dimen/d8"
                    android:gravity="center_vertical|right"
                    android:text="昨收"
                    android:textColor="#6A798E"
                    android:textSize="@dimen/f13" />
            </LinearLayout>

            <android.support.v7.widget.RecyclerView
                android:id="@+id/right_recycler"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scrollbars="none"
                android:overScrollMode="never"/>

        </LinearLayout>
    </com.json.itemdecoration.tworecycler.SwapScrollView>
</LinearLayout>

2、重寫HorizontalScrollView對左右滑動時坷澡,變化的監(jiān)聽

public class SwapScrollView extends HorizontalScrollView {

    private ScrollViewListener scrollViewListener = null;

    public SwapScrollView(Context context) {
        super(context);
    }

    public SwapScrollView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public SwapScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public void setScrollViewListener(ScrollViewListener 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);
        }
    }


    public interface ScrollViewListener {
        void onScrollChanged(SwapScrollView scrollView, int x, int y, int oldx, int oldy);
    }
}

3托呕、代碼的實現(xiàn):

 private void initView() {
        mLeftRecycler = findViewById(R.id.left_recycler);
        mRightRecycler = findViewById(R.id.right_recycler);


        mLeftAdapter = new LeftAdapter(mContractArrayList);
        LinearLayoutManager leftllm = new LinearLayoutManager(mContext);
        leftllm.setOrientation(LinearLayoutManager.VERTICAL);
        mLeftRecycler.addItemDecoration(new DividerItemDecoration(mContext, DividerItemDecoration.VERTICAL));
        mLeftRecycler.setLayoutManager(leftllm);
        mLeftRecycler.setAdapter(mLeftAdapter);
        mLeftRecycler.addOnScrollListener(new RecyclerView.OnScrollListener() {
            @Override
            public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
                super.onScrollStateChanged(recyclerView, newState);
            }

            @Override
            public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
                super.onScrolled(recyclerView, dx, dy);
                if (recyclerView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE) {
                    mRightRecycler.scrollBy(dx, dy); //使右邊recyclerView進(jìn)行聯(lián)動
                }
            }
        });


        mRightAdapter = new RightAdapter(mItemsArrayList);
        LinearLayoutManager rightllm = new LinearLayoutManager(mContext);
        rightllm.setOrientation(LinearLayoutManager.VERTICAL);
        mRightRecycler.addItemDecoration(new DividerItemDecoration(mContext, DividerItemDecoration.VERTICAL));
        mRightRecycler.setLayoutManager(rightllm);
        mRightRecycler.setAdapter(mRightAdapter);
        mRightRecycler.addOnScrollListener(new RecyclerView.OnScrollListener() {
            @Override
            public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
                super.onScrollStateChanged(recyclerView, newState);
            }

            @Override
            public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
                super.onScrolled(recyclerView, dx, dy);
                if (recyclerView.getScrollState() != RecyclerView.SCROLL_STATE_IDLE) {
                    mLeftRecycler.scrollBy(dx, dy);//使左邊recyclerView進(jìn)行聯(lián)動
                }
            }
        });

        //展示和隱藏陰影
        rightScrollView.setScrollViewListener(new SwapScrollView.ScrollViewListener() {
            @Override
            public void onScrollChanged(SwapScrollView scrollView, int x, int y, int oldx, int oldy) {
                if (x != 0) {
                    cardView.setContentPadding(0, 0, 5, 0);
                    cardView.setCardElevation(8);
                } else {
                    cardView.setContentPadding(0, 0, 0, 0);
                    cardView.setCardElevation(0);
                }
            }
        });


    }

代碼連接

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市频敛,隨后出現(xiàn)的幾起案子项郊,更是在濱河造成了極大的恐慌,老刑警劉巖斟赚,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件着降,死亡現(xiàn)場離奇詭異,居然都是意外死亡拗军,警方通過查閱死者的電腦和手機鹊碍,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進(jìn)店門厌殉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人侈咕,你說我怎么就攤上這事公罕。” “怎么了耀销?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵楼眷,是天一觀的道長。 經(jīng)常有香客問我熊尉,道長罐柳,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任狰住,我火速辦了婚禮张吉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘催植。我一直安慰自己肮蛹,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布创南。 她就那樣靜靜地躺著伦忠,像睡著了一般。 火紅的嫁衣襯著肌膚如雪稿辙。 梳的紋絲不亂的頭發(fā)上昆码,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天,我揣著相機與錄音邻储,去河邊找鬼赋咽。 笑死,一個胖子當(dāng)著我的面吹牛吨娜,可吹牛的內(nèi)容都是我干的脓匿。 我是一名探鬼主播,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼萌壳,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了日月?” 一聲冷哼從身側(cè)響起袱瓮,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤逾雄,失蹤者是張志新(化名)和其女友劉穎鸠窗,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體盈电,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡精拟,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年燎斩,在試婚紗的時候發(fā)現(xiàn)自己被綠了虱歪。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡栅表,死狀恐怖笋鄙,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情怪瓶,我是刑警寧澤萧落,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站洗贰,受9級特大地震影響找岖,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜敛滋,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一许布、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧绎晃,春花似錦蜜唾、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至落竹,卻和暖如春泌霍,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背述召。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工朱转, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人积暖。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓藤为,卻偏偏與公主長得像,于是被迫代替她去往敵國和親夺刑。 傳聞我的和親對象是個殘疾皇子缅疟,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,543評論 2 349

推薦閱讀更多精彩內(nèi)容

  • Swift1> Swift和OC的區(qū)別1.1> Swift沒有地址/指針的概念1.2> 泛型1.3> 類型嚴(yán)謹(jǐn) 對...
    cosWriter閱讀 11,092評論 1 32
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫、插件遍愿、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,066評論 4 62
  • 又到了周一存淫,無所事事,晚上準(zhǔn)備去看個電影《雷神》沼填,這或許是打發(fā)時間 最好的方式了桅咆。 看了江歌事件的報道,非常寒心坞笙。...
    拾奕閱讀 215評論 0 0
  • 夜亮了。 和同學(xué)打完羽毛球拖著疲倦的身軀籍茧,走在被洋洋灑灑的陽光鋪滿的街道上······ 漸漸的版述,我被他們狠狠...
    也曾沉溺于筆墨之間閱讀 264評論 0 0
  • 柳青的春天 石惠蓮 認(rèn)識柳青有近二十年了,因鮮少回村里硕糊,所以...
    室幽人雅閱讀 118評論 0 3