【问题标题】:Make status bar opaque programmatically以编程方式使状态栏不透明
【发布时间】:2017-11-16 12:14:13
【问题描述】:

活动有 2 个片段。当第一个 Fragment 可见时,我希望状态栏是半透明的(这里没有工具栏)。这按预期工作。

但是当我切换到第二个 Fragment 时,我希望状态栏是不透明的。工具栏应绘制在状态栏下方。我希望以编程方式完成这些更改,因为我无法在 Activity XML 中进行。

到目前为止,我已经尝试了以下代码。但这不起作用。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
    {
        Window window = getActivity().getWindow();
        view.setFitsSystemWindows(true);
        window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_LAYOUT_FLAGS);
        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
        window.addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
        window.addFlags(WindowManager.LayoutParams.TYPE_STATUS_BAR);
        window.setStatusBarColor(ContextCompat.getColor(getContext(), R.color.colorPrimaryDark));
    }

这是我得到的屏幕:

但我希望状态栏具有primaryDark 颜色并且工具栏显示在其下方。

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="in.blogspot.smarphy.pierecipe">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true">
        <activity
            android:name=".SplashActivity"
            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=".HomeyActivity"
            android:label="@string/title_activity_homey"
            android:theme="@style/AppTheme">
            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
            </intent-filter>
        </activity>

        <activity
            android:name=".RecipesCardsActivity"
            android:label="@string/title_activity_recipes_cards"
            android:parentActivityName=".HomeyActivity"
            android:theme="@style/AppTheme.OpaqueStatus" />

        <service android:name=".Services.HomeCardsNetworkService" />
        <service android:name=".Services.SearchCardsNetworkService" />

    </application>

</manifest>

【问题讨论】:

    标签: android android-layout android-fragments android-xml


    【解决方案1】:

    我理解正确。

    从片段 1 切换到片段 2 时,您想从全屏切换到正常。

    如果不使用这个,你可能在你的活动中有这个

    android:theme="@style/FullscreenTheme"
    

    在片段 2 中,您可以使用它来设置非全屏模式。 @Nullable

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {  
            getActivity().getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            ....
        }
        @Override
        public void onDestroyView() {
            getActivity().getWindow().setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            ....
        }
    

    添加非全屏时应清除全屏标志。

    信息: 半透明状态栏是在 API 级别 19 中引入的。

    【讨论】:

    • @Anand 你能用清单中关于你活动的代码更新你的问题吗?
    • 已编辑,请检查
    • @Anand 你是如何在片段一上设置全屏的?因为没有一个活动有全屏主题。
    • 实际上并不是全屏。只是让状态栏半透明
    • @Anand 检查我更新的答案。您需要清除半透明状态栏的标志。
    猜你喜欢
    • 1970-01-01
    • 2020-03-31
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多