我在文本视图的左侧使用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>