13

我正在制作自定义锁屏。

锁定屏幕是我在屏幕关闭时启动的一项活动。

但是,我不能让活动既透明又全屏。

状态栏一直显示。

这是我在清单中所做的:

<activity android:name=".activities.LockScreenActivity"  android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>

我还在 activit 的 onCreate 中添加了这些附加功能:

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.lock_screen);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

但它似乎无法工作:|

为什么?

4

3 回答 3

45

从 onCreate() 中删除代码。在清单文件中使用它。

android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"

否则根据您的要求创建主题。

于 2011-12-24T08:59:09.267 回答
3

您需要在 setContentView 之前设置标志,然后它应该可以正常工作

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);

setContentView(R.layout.lock_screen);
于 2013-07-31T07:56:09.947 回答
0

这是它的链接(在 Android 4.1 及更高版本上隐藏状态栏)。

View decorView = getWindow().getDecorView();
// Hide the status bar.
int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;
decorView.setSystemUiVisibility(uiOptions);
// Remember that you should never show the action bar if the
// status bar is hidden, so hide that too if necessary.
ActionBar actionBar = getActionBar();
actionBar.hide();

在 Android 4.0 及更低版本上隐藏状态栏:

<application
    ...
    android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
    ...
</application>

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // If the Android version is lower than Jellybean, use this call to hide
        // the status bar.
        if (Build.VERSION.SDK_INT < 16) {
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
        }
        setContentView(R.layout.activity_main);
    }

于 2016-01-21T09:28:23.197 回答