在Android中构建分段的HORIZONTAL RecyclerView

时间:2019-06-19 13:16:46

标签: android android-recyclerview

我想在recyclerview中实现以下设计。我打算使用一节recyclerview。有人可以建议我应该采用的方法吗?有什么更好的方法呢?

是否有此类示例或教程的链接?

布局1: enter image description here

布局2:

enter image description here

布局3:

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以尝试以下操作:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
    tools:context=".MainActivity">

<TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="TextView"
    android:gravity="left|center"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycler_view"
    android:layout_width="match_parent"
    android:layout_height="128dp"
    android:layout_marginTop="8dp"
    android:orientation="horizontal"
    app:layoutManager="android.support.v7.widget.LinearLayoutManager"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/textView" />

</android.support.constraint.ConstraintLayout>

我认为最后两个示例还可以。

对于第一个,您可以在主recyclerview的每个项目中使用带有recyclerview的自定义布局。

希望有帮助。