当操作系统调用我的某个适配器的getView()时,我收到许多奇怪的应用程序崩溃报告(使用app compat库)。它在getDrawable()中使用Android 4.x下的ResourceNotFoundException或Android 5.x下的RuntimeException或Android 6.x下的UnsupportedOperationException崩溃。 getView()实际上是用大多数简单的布局文件调用inflate()。
调用堆栈总是这样:
at android.content.res.TypedArray.getDrawable (TypedArray.java)
at android.view.View.<init> (View.java:3756)
at android.view.ViewGroup.<init> (ViewGroup.java)
at android.widget.LinearLayout.<init> (LinearLayout.java)
at android.widget.LinearLayout.<init> (LinearLayout.java)
at android.widget.LinearLayout.<init> (LinearLayout.java)
at java.lang.reflect.Constructor.newInstance (Constructor.java)
at java.lang.reflect.Constructor.newInstance (Constructor.java)
at android.view.LayoutInflater.createView (LayoutInflater.java)
at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView (PhoneLayoutInflater.java)
at android.view.LayoutInflater.onCreateView (LayoutInflater.java)
at android.view.LayoutInflater.createViewFromTag (LayoutInflater.java)
at android.view.LayoutInflater.inflate (LayoutInflater.java)
at android.view.LayoutInflater.inflate (LayoutInflater.java)
at android.view.LayoutInflater.inflate (LayoutInflater.java)
at my_app.activity$adapter.getView
以下是Android 4.x和5.x上的“原因”布局文件:
<LinearLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold"/>
<TextView
android:id="@+id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"/>
</LinearLayout>
<ImageButton
android:id="@+id/menu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="#00000000"
android:src="@drawable/ic_menu_moreoverflow_normal_holo_dark"/>
该布局中使用的唯一可绘制在hdpi,mdpi和xhdpi中可用。为什么Android无法找到它?顺便说一句,我无法在模拟器或运行4.x或5.x的实际设备中重现这一点。
任何建议都将受到赞赏,这些是我的前4个应用程序崩溃,代表超过90%的那些!
我曾经将背景设置为@null并将其更改为#00000000无效。还包括主题属性中的drawable和src =“?menu_overflow”,但它没有改变任何东西。
答案 0 :(得分:0)
尝试
app:srcCompat="@drawable/ic_menu_moreoverflow_normal_holo_dark"
而不是
android:src="@drawable/ic_menu_moreoverflow_normal_holo_dark" // in your image button
<强>更新强>
别忘了使用android的android.support.v7.widget.AppCompatImageButton
代替ImageButton
(这不会崩溃)。
<android.support.v7.widget.AppCompatImageButton
android:id="@+id/menu"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:background="#00000000"
app:srcCompat="@drawable/ic_menu_moreoverflow_normal_holo_dark"/>