gpt4 book ai didi

android - 将自定义标题与 FEATURE_PROGRESS 相结合

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:18:00 26 4
gpt4 key购买 nike

在我的 onCreate() 中,我设置了一个进度条,如下所示:

getWindow().requestFeature(Window.FEATURE_PROGRESS);
getWindow().setFeatureInt( Window.FEATURE_PROGRESS, Window.PROGRESS_VISIBILITY_ON);

现在,希望稍微增强一下标题栏,我想更改它的 background颜色。第一步是检查是否支持 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之前或之后调用这个函数都没有关系)

知道如何work around这个?

或者,我会避免 custom标题栏,如果我能找到非自定义标题栏的资源 ID .比危险更好的东西 getParent() .

这可能吗?

最佳答案

作为documentation says :

FEATURE_CUSTOM_TITLE

Flag for custom title. You cannot combine this feature with other title features.

正如您提到的,您可以做的是使用带有 ProgressBar 的自定义标题栏,here is an example how to accomplish that .

另一方面,你为什么不使用 Action Bar?

关于android - 将自定义标题与 FEATURE_PROGRESS 相结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11254366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com