我经历了一些尴尬的行为。下面的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>
答案 0 :(得分:0)
您确定TextView
未在实心角落中绘制背景吗?您LinearLayout
似乎没有填充以防止孩子远离角落,因此他们不会重绘背景(虽然我不知道你的Summary.Title
风格是什么 - 你可以在那里使用边距。)
层次结构查看器在这种情况下非常有用,因为您可以根据不同的背景看到每个视图的绘制内容。