RecyclerView两种类型项目高度换行内容

时间:2018-01-15 18:00:05

标签: android android-recyclerview recycler-adapter row-height expandablerecyclerview

我在ViewType中使用两个adapter来显示不同的布局:

        case 0:
            return new Holder(LayoutInflater.from(parent.getContext()).inflate(R.layout.faq_item, parent, false));
        case 2:
            return new HolderAnswer(LayoutInflater.from(parent.getContext()).inflate(R.layout.faq_item_answer, parent, false));
        default:
            return null;
    }

默认情况下,每秒layout都有隐身(GONETextView,在首次点击时会转为Visible

如果我设置第一项固定height它可以正常工作,但项目可能包含有时不会看到的长文本:

<ConstraintLayout
layout_height="@dimen/..."
...>
....
</ConstraintLayout>

如果我将height更改为wrap_content,我可以观察到意外的行为:第一个和第二个元素的height等于screen height,但经过几次扫描到最后和列表的开头,高度符合预期的措施。

我的猜测是,这是因为使用了两种视图类型或错误的对齐方式。为setHasFixedSize()尝试了true / false以下是布局:

question.xml

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/container_question"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CCEFF5">

<View
    android:id="@+id/indicator"
    android:layout_width="3dp"
    android:layout_height="20dp"
    android:background="#ff008ca5"
    android:visibility="invisible"
    app:layout_constraintBottom_toBottomOf="@+id/question"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="@+id/question" />

<com.hastee.pay.ui.view.Text
    android:id="@+id/question"
    style="@style/black_regular_15"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:layout_marginEnd="8dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginStart="20dp"
    android:layout_marginTop="16dp"
    app:infont="bold"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toStartOf="@+id/plus"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.0" />

<ImageView
    android:id="@+id/plus"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="20dp"
    app:layout_constraintBottom_toBottomOf="@+id/question"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="@+id/question"
    app:srcCompat="@drawable/ic_plus_small" />


</android.support.constraint.ConstraintLayout>

answer.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CCEFF5">
<com.hastee.pay.ui.view.Text
    android:id="@+id/answer"
    style="@style/black_regular_13"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="16dp"
    android:layout_marginLeft="32dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="16dp"
    android:alpha="0.7" />

<View
    android:id="@+id/divider"
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_gravity="bottom"
    android:layout_marginLeft="20dp"
    android:layout_marginStart="20dp"
    android:background="@color/divider" />
</FrameLayout>

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

只需从"{ "name":"abc", "place"="xyz" }" 切换到ConstraintLayout即可解决问题。看起来像第一个复杂列表的错误工作。