XML形状可绘制不呈现所需的颜色

时间:2010-07-18 11:31:40

标签: android drawable

我定义了drawable

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http//schemas.android.com/apk/res/android"
       android:shape="rectangle">
  <solid android:color="#ffffffff" />
  <size android:width="60dp"
        android:height="40dp" />
</shape>

但如何在layout定义中使用它?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              >
    <ImageView
        android:src="@drawable/ic_title"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        />
</LinearLayout>

我仍然只看到黑色背景。

编辑:

事实证明,我在: drawable声明中遗漏了一个xmlns。现在这个例子适用于Gingerbread设备:)

2 个答案:

答案 0 :(得分:21)

在drawable中我使用这个xml代码来定义边框和背景:

<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
  <stroke android:width="4dp" android:color="#D8FDFB" /> 
  <padding android:left="7dp" android:top="7dp" 
    android:right="7dp" android:bottom="7dp" /> 
  <corners android:radius="4dp" /> 
  <solid android:color="#f0600000"/> 
</shape> 

答案 1 :(得分:15)

我遇到了类似的问题,发现如果你删除了大小定义,它就会出于某种原因。

卸下:

<size
    android:width="60dp"
    android:height="40dp" />

从形状。

让我知道这是否有效!