所选选项卡的样式选项卡指示器或背景颜色
Styling tab indicator or background color of selected tab
我正在尝试使用从 Android 操作栏样式 Generator.for 创建和选项卡生成的代码 application.but 不幸的是,正在显示已停止的错误。可能是主题的一些问题..我还补充说:
android:theme="@style/Theme.Example"
清单中。
请帮帮我。我是 android.
的初学者
LogCat:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.priyankagupta.tabbing/com.example.priyankagupta.tabbing.MainActivity}:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2338)
删除 android
标签,例如:
<item name="actionBarTabTextStyle">@style/MyTheme.ActionBar.TabText</item>
因为您正在使用支持库。
并且还尝试使用 parent
of MyTheme.ActionBar.TabText
作为:
parent="Widget.AppCompat.Base.ActionBar.TabText"
我正在尝试使用从 Android 操作栏样式 Generator.for 创建和选项卡生成的代码 application.but 不幸的是,正在显示已停止的错误。可能是主题的一些问题..我还补充说:
android:theme="@style/Theme.Example"
清单中。
请帮帮我。我是 android.
的初学者LogCat:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.priyankagupta.tabbing/com.example.priyankagupta.tabbing.MainActivity}:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2338)
删除 android
标签,例如:
<item name="actionBarTabTextStyle">@style/MyTheme.ActionBar.TabText</item>
因为您正在使用支持库。
并且还尝试使用 parent
of MyTheme.ActionBar.TabText
作为:
parent="Widget.AppCompat.Base.ActionBar.TabText"