我的状态栏在androidstudio和我的智能手机

时间:2015-04-23 13:03:42

标签: android

我试图提出申请,但我遇到了问题

在我的智能手机(Xperia Z3)上,我有一个透明状态栏,顶部有阴影。 在android studio模拟器上,我有一个半透明的状态栏

我想在xperia Z3上安装相同的android studio状态栏(半透明状态栏)。

我正在使用此代码:

http://www.android4devs.com/2014/12/how-to-make-material-design-navigation-drawer.html

(在模拟器上,我有相同的状态栏,如链接所示)

1 个答案:

答案 0 :(得分:0)

正如亚历克斯已经说过,也许索尼有自己的UI外观,如果它有效,你仍然可以试试这个代码..!

 ActionBar mActionBar = getActionBar();
    assert mActionBar != null;
    mActionBar.setBackgroundDrawable(new ColorDrawable(getResources()
            .getColor(R.color.mOrange)));
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        Window window = getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
        window.setStatusBarColor(getResources()
                .getColor(R.color.Any_Color_You_Want));
    }