在我的 onCreate() 中,我设置了一个进度条,如下所示:
getWindow().requestFeature(Window.FEATURE_PROGRESS);
getWindow().setFeatureInt( Window.FEATURE_PROGRESS, Window.PROGRESS_VISIBILITY_ON);
现在,希望稍微增强标题栏,我想改变它的背景颜色。第一步是检查是否FEATURE_CUSTOM_TITLE
支持:
final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
if ( customTitleSupported ) {
Log.i(TAG, "CUSTOM TITLE SUPPORTED!")
}
但是,一旦我打电话给我,requestWindowFeature(Window.FEATURE_CUSTOM_TITLE)
我就会得到:
AndroidRuntimeException: You cannot combine custom titles with other title features
(不管我是在设置之前FEATURE_PROGRESS
还是之后调用这个函数)
知道如何解决这个问题吗?
或者,如果我能找到非自定义标题栏的资源ID,我会避免使用自定义标题栏。比危险的getParent()更好的东西。
这可能吗?