-5

你好!我想使用相同的listviewgridview嵌套的recyclerview,但我不知道如何实现。请帮我

4

1 回答 1

0

创建一个线性布局的 xml 文件,并将线性布局的方向属性设置为水平。例如,

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightsum="3">
    <ImageView
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"/>
    <ImageView
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"/>
    <ImageView
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"/>
</LinearLayout>

并在 recyclerView 适配器类中调用此布局。

于 2016-08-06T09:48:39.190 回答