我最近为我的应用添加了不同的主题,因此需要为每个主题添加不同的图标。
<ImageView
...
android:src="@drawable/ic_info"
android:tint="?colorControlNormal"
但是在低于21的API级别上,这不起作用。 我正在使用vectordrawables并且已经尝试使用
vectorDrawables.useSupportLibrary = true
和
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
但这也没有帮助。
着色支持文档很模糊,使用VectorDrawables和引用主题颜色的组合,我找不到任何信息。
目前正在尝试使用:
<android.support.v7.widget.AppCompatImageView
...
android:tint="?colorControlNormal"
android:src="@drawable/icon"/>
导致:
Caused by: android.view.InflateException: Binary XML file line #39: Error inflating class android.support.v7.widget.AppCompatImageView
at android.view.LayoutInflater.createView(LayoutInflater.java:621)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:697)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:756)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:759)
at android.view.LayoutInflater.inflate(LayoutInflater.java:492)
at android.view.LayoutInflater.inflate(LayoutInflater.java:397)
...
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Constructor.constructNative(Native Method)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
...
Caused by: java.lang.NumberFormatException: Invalid int: "res/color/abc_secondary_text_material_light.xml"
at java.lang.Integer.invalidInt(Integer.java:137)
at java.lang.Integer.parse(Integer.java:374)
at java.lang.Integer.parseInt(Integer.java:365)
at com.android.internal.util.XmlUtils.convertValueToInt(XmlUtils.java:122)
at android.content.res.TypedArray.getInt(TypedArray.java:255)
at android.widget.ImageView.<init>(ImageView.java:155)
at android.support.v7.widget.AppCompatImageView.<init>(AppCompatImageView.java:72)
at android.support.v7.widget.AppCompatImageView.<init>(AppCompatImageView.java:68)
答案 0 :(得分:1)
尝试使用:
<android.support.v7.widget.AppCompatImageView
android:id="@+id/my_appcompat_imageview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/my_image" // change to ur own.
android:tint="#636363" // also change this part to our own case
/>
这项工作对API&lt; 19
答案 1 :(得分:1)
终于找到了问题!
引用主题颜色QHash< T >
你隐式使用了一个在L以下不支持的ColorStateList(abc_secondary_text_material_light.xml)。
除非您使用?colorControlNormal
并且还使用支持lib <android.support.v7.widget.AppCompatImageView>
属性中的tint属性。
所以正确的色调属性最终解决了它。