简体   繁体   中英

Android - How to use recycler view inside recycler view

how can i create this type of view in android there row and column ,both sides data will be coming from api. what component of android studio , i have to use it ? can anyone please help me , i have to color also the fix row and column.

i tried with recycler view inside recycler view but its didn't working.

                      <android.support.v7.widget.RecyclerView
                        android:id="@+id/recyclerView"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="horizontal" />

图片在这里...

Take a look at GridLayout . It have rows and columns and may be that you are looking for.

use GridLayoutManager

recyclerView.setLayoutManager(new GridLayoutManager(context, columnCount));

If you want 4 columns, replace columnCount with 4.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM