在应用程序状态栏颜色... Android 6.0.1
In App StatusBar Color ... Android 6.0.1
我目前在 4 毫米纸币上使用 7 毫米纸币应用程序。
它运行良好,但只有一个问题,状态栏是白色背景上的全白色 like this
我正在尝试,但问题是应用程序没有任何错误地反编译,即使我设法做到了,它也不会重新编译。我正在使用 apktool
谁能指导我如何操作??请
有没有不反编译的方法??
试试这个来改变 statusBar 为白色时的颜色。
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) {
if (getWindow().getStatusBarColor() == Color.WHITE)
getWindow().setStatusBarColor(ContextCompat.getColor(this, R.color.lollipop_status_bar_color));
}
希望对您有所帮助。
我目前在 4 毫米纸币上使用 7 毫米纸币应用程序。 它运行良好,但只有一个问题,状态栏是白色背景上的全白色 like this
我正在尝试,但问题是应用程序没有任何错误地反编译,即使我设法做到了,它也不会重新编译。我正在使用 apktool
谁能指导我如何操作??请 有没有不反编译的方法??
试试这个来改变 statusBar 为白色时的颜色。
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M) {
if (getWindow().getStatusBarColor() == Color.WHITE)
getWindow().setStatusBarColor(ContextCompat.getColor(this, R.color.lollipop_status_bar_color));
}
希望对您有所帮助。