我在ScrollView中有一个TextView,它全部包含在LinearLayout中,TextView的末尾被截断(多行)。
这是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:baselineAligned="false">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text=""
android:textSize="10dp"
android:layout_weight="1"
android:layout_gravity="fill_vertical" />
</ScrollView>
</LinearLayout>
无论窗格是否滚动,TextView都会被切断,这让我很生气!有什么帮助吗?!
答案 0 :(得分:0)
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">//try this
&#13;
如果这不能解决问题,那么: -
您也可以尝试使用ScrollView作为父视图。如果它只包含一个子项(TextView),则不需要该线性布局
答案 1 :(得分:0)
更新。我通过更改片段的类型来解决问题,以作为RecyclerFragment工作。当片段被添加到结构的其余部分时,停止切断!
我在开发过程中继承了这个应用程序并且移交了...完成这个应用并修复了错误,所以我通过蒙着眼睛找到了自己的方式!
非常感谢!