gpt4 book ai didi

android - 您如何以编程方式切换顶部栏的颜色?当应用运行时,不仅一次,而且多次

转载 作者:行者123 更新时间:2023-12-03 05:58:05 25 4
gpt4 key购买 nike

在youtube应用上,当您转到某人的 channel 时,顶部栏会更改颜色。

它从红色变成其他颜色

他们如何在整个应用程序中多次更改颜色?它背后的代码是什么?我想在我的android应用中做类似的事情。

最佳答案

有两种方法可以做到这一点。

动态

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(Color.BLUE);
}

样式
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item> <!-- statusbar color -->
</style>

<style name="RecyclerTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primary_recycler</item>
<item name="colorPrimaryDark">@color/primary_dark_recycler</item>
</style>

</resources>

list
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.eugene.eugenehoranresume"
xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".Activities.HomeActivity"
android:label="@string/title_activity_home"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".Activities.RecyclerExample"
android:label="@string/app_name"
android:theme="@style/RecyclerTheme">
</activity>
</application>

</manifest>

关于android - 您如何以编程方式切换顶部栏的颜色?当应用运行时,不仅一次,而且多次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30513373/

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