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