我将创建一个如下图所示的可绘制对象,其中包含一个箭头图像。
当我使用 layer-list 时,箭头图像出现在我的drawable中间!!!
请让我知道我该如何实现它...
更新:这是我的图层列表:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item >
<shape android:shape="rectangle">
<corners android:radius="5dp"/>
<solid android:color="#d5d5d5"/>
<stroke android:width="1dp" android:color="#242425"/>
</shape>
</item>
<item android:drawable="@drawable/ic_arrow"></item>