Ошибка тестирования фрагмента: android.view.InflateException: строка двоичного файла XML #16: строка двоичного файла XML #16: ошибка расширения класса <unknown>

Я пытаюсь протестировать фрагмент, следуя этим инструкциям: https://developer.android.com/training/basics/fragments/testing

Однако я получаю следующий сбой при звонке launchFragmentInContainer из моего теста.

Трассировки стека:

android.view.InflateException: Binary XML file line #16: Binary XML file line #16: Error inflating class <unknown>

Caused by: android.view.InflateException: Binary XML file line #16: Error inflating class <unknown>
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
...
at android.view.LayoutInflater.$$robo$$android_view_LayoutInflater$createView(LayoutInflater.java:647)
...
at com.myapp.poll.PollHomeFragment.onCreateView(PollHomeFragment.kt:31)
...
Caused by: java.lang.UnsupportedOperationException: Failed to resolve attribute at index 13: TypedValue{t=0x2/d=0x7f0301b1 a=-1}
at android.content.res.TypedArray.getDrawableForDensity(TypedArray.java:946)
at android.content.res.TypedArray.getDrawable(TypedArray.java:930)
at android.view.View.__constructor__(View.java:5010)
at android.view.View.<init>(View.java)
at android.widget.TextView.<init>(TextView.java)
...
at com.myapp.poll.PollHomeFragment.onCreateView(PollHomeFragment.kt:31)

Вот макет:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
tools:context=".poll.PollActivity">

<TextView
    android:id="@+id/tvEmail"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    tools:text="asdf@asdf.com" />

<TextView                      <!-- This is line 16 -->
    android:id="@+id/tvViewPoll"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/selectableItemBackground"
    android:gravity="center"
    android:minHeight="48dp"
    android:text="View Poll" />

<TextView
    android:id="@+id/tvCreatePoll"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/selectableItemBackground"
    android:gravity="center"
    android:minHeight="48dp"
    android:text="Create Poll" />

3 ответа

Решение

Хорошо, исходя из обоснованного предположения, основанного на трассировке стека, я попытался удалить android:background="?attr/selectableItemBackground" и это решает проблему.

Похоже, что ?attr/selectableItemBackground возможно, несовместим с FragmentScenario или это ошибка фреймворка.

Я отправил сообщение об ошибке в систему отслеживания проблем: https://issuetracker.google.com/issues/144629519

Обновление от Google:

Статус: не исправить (предполагаемое поведение) Тема по умолчанию не имеет атрибута, определенного приложением? Attr/selectableItemBackground (поскольку фрагмент не зависит от AppCompat, MDC и т. Д.)

Похоже, вы должны передать правильную тему в FragmentScenario:

launchFragmentInContainer<PollHomeFragment>(themeResId = R.style.Theme_YourTheme)

В Java также необходимо передать тему в FragmentScenario. Иначе Fragment не будет знать о текущей теме и в конечном итоге будет жаловаться, что нужно установить AppCompat тема ...

      FragmentScenario<SomeFragment> scenario = FragmentScenario.launchInContainer(
    SomeFragment.class,
    Bundle.EMPTY,
    R.style.Theme_Custom,
    null
);

Для меня использование "android :? Attr/selectableItemBackground" вместо этого решило проблему.

Другие вопросы по тегам