2

我经历了一些尴尬的行为。下面的 LinearLayout 被分配了正确的背景,但是所有的角半径都被简单地忽略了。问题是为什么,我该如何解决?如果我设置它android:backgroundTextView它工作正常。

为什么我将 TextView 包装在 LinearLayout 中?我想为 TextView 的文本设置动画。只有文字,没有背景,所以我把它包装成一个LinearLayout。

<LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/summary_title_horizontal_last" >

            <TextView
                android:id="@+id/evaluation_highscore_title"
                style="@style/Summary.Title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/evaluation_highscore"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textStyle="bold" />
        </LinearLayout>

@drawable/summary_title_horizontal_last

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="@color/summary_title_start"
        android:endColor="@color/summary_title_end"
        android:angle="270" />

    <corners android:bottomLeftRadius="@dimen/summary_box_radius"  />

</shape>
4

1 回答 1

0

您确定您TextView没有在实心角落绘制背景吗?你似乎没有填充LinearLayout来让孩子们远离角落,这样他们就不会重绘背景(虽然我不知道你的Summary.Title风格是什么——你可以在那里使用边距)。

Hierarchy Viewer 在这种情况下非常有用,因为您可以看到每个视图在不同背景下绘制的内容。

于 2013-02-18T15:13:14.750 回答