当操作系统调用我的一个适配器的getView()时,我收到许多奇怪的应用程序崩溃报告(使用app compat库)。在Android 4下,它在getDrawable()中崩溃,出现ResourceNotFoundException。Android 5下的x或RuntimeException。Android 6下的x或UnsupportedOperationException。x、 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找不到它?顺便说一句,我无法在emulator或运行4的实际设备中再现这一点。x或5。x!
如果您有任何建议,我们将不胜感激,这些是我的前4大应用程序崩溃,占90%以上!
我曾经将背景设置为@null,并将其更改为#00000000,但没有任何效果。还包括主题的属性中的drawable,并具有src=“?menu\u overflow”,但它没有改变任何内容。