这是有问题的情况:
我有一个Activity
和一个ScrollView
,
ScrollView
小时候只有一个LinearLayout
,而LinearLayout
有一个TextView
。
XML文件在这里:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bubble_shape"
android:text="@string/TestLargeText"/>
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
和“气泡形状” drawable
在这里:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="15dp"
android:bottomRightRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
<padding
android:bottom="12dp"
android:left="12dp"
android:right="12dp"
android:top="12dp"/>
<stroke
android:width="8dp"
android:color="#ff00ff"/>
</shape>
TextView
中有一个大文本,这是问题所在:
TextView
包含大文本时,背景形状不会显示。您可以在下面的图片中看到问题:
我该如何解决问题?
答案 0 :(得分:1)
我通过两种方式解决了您的问题。
1-将“ bubble_shape”设置为您的HorizontalScrollView
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bubble_shape">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/TestLargeText" />
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
2-或仅更改“ bubble_shape”中的转角标签,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="15dp" />
<padding
android:bottom="12dp"
android:left="12dp"
android:right="12dp"
android:top="12dp" />
<stroke
android:width="8dp"
android:color="#ff00ff" />
</shape>