但是我还没有找到改变状态文本颜色的方法。如果我将colorPrimaryDark设置为白色,则状态栏也不会显示图标,因为它们的颜色也是白色。
有什么方法可以更改状态栏文本的颜色?
提前致谢
Answers:
我不确定您要定位的API级别,但是如果您可以使用API 23特定的东西,则可以将以下内容添加到AppTheme styles.xml中:
<item name="android:statusBarColor">@color/colorPrimaryDark</item>
<item name="android:windowLightStatusBar">true</item>
当android:windowLightStatusBar
设置为true时,状态栏颜色为白色时将能够看到状态栏文本颜色,反之亦然,当android:windowLightStatusBar
设置为false时,状态栏颜色将为可见时状态栏文本颜色。黑暗。
例:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<!-- Status bar stuff. -->
<item name="android:statusBarColor">@color/colorPrimaryDark</item>
<item name="android:windowLightStatusBar">true</item>
</style>
这很简单:
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);// set status text dark
getWindow().setStatusBarColor(ContextCompat.getColor(BookReaderActivity.this,R.color.white));// set status background white
反之亦然:
getWindow().setStatusBarColor(ContextCompat.getColor(BookReaderActivity.this, R.color.black));
View decorView = getWindow().getDecorView(); //set status background black
decorView.setSystemUiVisibility(decorView.getSystemUiVisibility() & ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); //set status text light
尝试一次。
在您的活动onCreate()
方法中,粘贴以下代码。
try {
if (android.os.Build.VERSION.SDK_INT >= 21) {
Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
window.setStatusBarColor(ContextCompat.getColor(this, R.color.color_red));
}
} catch (Exception e) {
e.printStackTrace();
}
注意:color_red-状态栏颜色。
在您的活动onCreate()
方法中,将以下代码粘贴到setContentView(R.layout.activity_generic_main);
这是下面的示例代码。
public class GenericMain extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_generic_main);
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
}
}
如果不启动页面,请尝试此操作
getActivity()。getWindow()。clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); getActivity()。getWindow()。getDecorView()。setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); getActivity()。getWindow()。addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); getActivity()。getWindow()。setNavigationBarColor(ContextCompat.getColor(context,R.color.white)); getActivity()。getWindow()。setStatusBarColor(ContextCompat.getColor(context,R.color.white));