0

我正在为 android 4.0 及更高版本创建一个应用程序。我使用深色的 Holo.Light 主题ActionBarTabs作为导航模式)。

问题:我需要将太多图标(选项卡)放入 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 和自定义标题吗?

4

1 回答 1

1

组合这样的酒吧并不是一个好主意。它仅使用自定义布局。

于 2013-08-05T06:04:45.227 回答