我在 my 中使用两个ViewType
sadapter
来显示不同的布局:
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
都有 invisible( GONE
)TextView
打开Visible
第一项点击
如果我将第一个项目设置为固定height
它可以正常工作,但项目可能包含有时不会被看到的长文本:
<ConstraintLayout
layout_height="@dimen/..."
...>
....
</ConstraintLayout>
如果我更改height
为wrap_content
我可以看到意外的行为:第一个和第二个元素有height
equals screen height
,但是在几次滑动到列表的末尾和开头之后,高度符合预期的度量。
我的猜测,这是因为使用了两种视图类型或错误的对齐方式。尝试了真/假setHasFixedSize()
以下是布局:
问题.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>
答案.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>
有什么想法吗?