在浓缩咖啡测试中夸大com.google.android.material.tabs.TabLayout类的错误

时间:2019-03-20 16:09:03

标签: android fragment android-espresso androidx

我有一个带有TabLayout的片段:

<com.google.android.material.tabs.TabLayout
    android:id="@+id/playerSectionsTabLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="8dp"
    android:paddingBottom="8dp"
    app:tabIndicatorHeight="0dp"
    app:tabMode="scrollable"
    app:tabRippleColor="@null"
    app:tabTextAppearance="@style/TabLayoutTextAppearance" />

我正在使用:

implementation 'com.google.android.material:material:1.0.0'

,效果很好。但这在浓缩咖啡测试中不起作用,我明白了:

android.view.InflateException: Binary XML file line #15: Error inflating class com.google.android.material.tabs.TabLayout
...
Caused by: java.lang.IllegalArgumentException: The style on this component requires your app theme to be Theme.AppCompat (or a descendant).

顺便说一句,我使用片段测试包来测试我的片段。

0 个答案:

没有答案