0
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
  <gradient
        android:layout_width="match_parent"
        android:angle="270"
        android:centerColor="#4ccbff"
        android:endColor="#24b2eb"
        android:startColor="#24b2eb" />
 <corners android:radius="5dp" />
</shape>

上面的代码在第4layout_height行显示“缺少必需的属性”

&

第11行的“必需layout_heightlayout_width属性缺失” 。

4

1 回答 1

1

我的意见是从形状、渐变和角落中删除任何布局信息。您的文件应如下所示。

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:angle="270"
        android:centerColor="#4ccbff"
        android:endColor="#24b2eb"
        android:startColor="#24b2eb" />
    <corners android:radius="5dp" />
</shape>
于 2013-04-26T06:24:32.347 回答