我正在尝试以下布局:
结果:当我滚动文本时,回收视图无法完全显示文本。 丢失对应于该“文本视图”高度的一些文本结束行是相同的。
std::string
答案 0 :(得分:3)
尝试在RelativeLayout中添加Textview和RecyclerView,并按照以下说明提供 android:layout_below =“ @ + id / text_view_id”
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/lot_number_layout">
<TextView
android:id="@+id/lbl_po_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:visibility="visible"
android:layout_below="@+id/lbl_po_number" />
</RelativeLayout>
否则,使用LinerLayout并指定 orientation:vertical ,然后将TextView和RecyclerView插入LinearLayout内
答案 1 :(得分:0)
将这两行代码添加到您的TextView
android:ellipsize = "end"
android:maxLines = "1"
整个代码为
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/title_text"
android:ellipsize = "end"
android:maxLines = "1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:text="Text Title"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
<TextView
android:id="@+id/description_text"
android:layout_width="0dp"
android:ellipsize = "end"
android:maxLines = "1"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:text="description text"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title_text"
/>
</android.support.constraint.ConstraintLayout>