图层列表Custom Drawable在Marshmallow下面的Android版本中不起作用?

时间:2017-09-22 05:49:23

标签: android size version layer-list android-custom-drawable

我在文本视图的左侧使用drawable来设置我的联系号码的图标。我创建的自定义drawable在Android版本的Marshmallow或更高版本中完美无效,但在它之下它没有产生任何效果,图标显得很大。我还能做些什么才能让它在其他版本中运行?

My custom_drawable_phone.xml

<?xml version="1.0" encoding="utf-8"?>
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
   <item
       android:id="@+id/notification"
       android:drawable="@drawable/ic_phone"
        android:width="16dp"
        android:height="16dp">
     </item>
</layer-list>

0 个答案:

没有答案