我正在为 android 4.0 及更高版本创建一个应用程序。我使用深色的 Holo.Light 主题ActionBar
(Tabs
作为导航模式)。
问题:我需要将太多图标(选项卡)放入 ActionBar,所以我正在考虑创建一个自定义TitleBar
并在那里放置一些Buttons
以保留功能,同时不会过度发送ActionBar
. 我尝试了以下方法:
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle);
这会导致应用程序崩溃并显示以下消息:
08:00:24.063: E/AndroidRuntime(11283): java.lang.RuntimeException: Unable to start activity ComponentInfo{net.maver1ck.test/net.maver1ck.test.Main}: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features
什么是“其他标题功能”?可以使用 ActionBar 和自定义标题吗?