Android:生成具有指定颜色底部的背景形状

时间:2015-02-21 17:45:15

标签: android android-background android-shape

我想生成背景可绘制的形状,其颜色为灰色,底部厚度为2dp,黑色。

我试过以下

<?xml version="1.0" encoding="utf-8"?>
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <item> 
    <shape android:shape="rectangle">
      <solid android:color="#D3D3D3" /> 
    </shape>
  </item>   
    <item android:bottom="2dp" >  
     <shape android:shape="rectangle"> 
      <solid android:color="#000000" />
    </shape>
   </item>    
 </layer-list>

但无法生成所需的形状。怎么办呢?

1 个答案:

答案 0 :(得分:0)

如果你切换2种颜色,它应该有效。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
    <shape android:shape="rectangle">
        <solid android:color="#000000" />
    </shape>
</item>
<item android:bottom="2dp" >
    <shape android:shape="rectangle">
        <solid android:color="#D3D3D3" />
    </shape>
</item>
</layer-list>

enter image description here