我的一个屏幕上有一个标签主机,我在同一个屏幕上做了一个自定义标题。现在我想在自定义标题中添加一个按钮,但我收到“您不能将自定义标题与其他标题功能结合起来”错误。我尝试了所有这样的情况,但它对我不起作用。
我的代码是:
requestWindowFeature( Window.FEATURE_CUSTOM_TITLE );
setContentView(R.layout.routes);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.customtitle);
super.onCreate(savedInstanceState);
我试过这个代码其他屏幕(这不包括tabhost)它工作。怎么了?有谁能够帮我?
编辑:
<style name="CustomWindowTitleBackground">
<item name="android:background">#084B8A</item>
</style>
<style name="CustomTheme" parent="android:Theme">
<item name="android:windowTitleSize">65dip</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
在我的清单中: android:theme="@style/CustomTheme"
我没有在 Java 类中编写任何代码片段。我只是这样声明。也许是不对的?可能的?