文本较大且正在滚动时,TextView Shape背景不显示

时间:2019-05-08 14:40:21

标签: android textview scrollview shapes

这是有问题的情况:

我有一个Activity和一个ScrollViewScrollView小时候只有一个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包含大文本时,背景形状不会显示。您可以在下面的图片中看到问题:

the xml file width small text

and the same xml width a large text!

我该如何解决问题?

1 个答案:

答案 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>