我有一个带有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).
顺便说一句,我使用片段测试包来测试我的片段。