Google 캘린더 애플리케이션의 동작을 재현하려고합니다.
하지만 상태 텍스트 색상을 변경하는 방법을 찾지 못했습니다. colorPrimaryDark를 흰색으로 설정하면 색상이 흰색이기 때문에 상태 표시 줄의 텍스트도 볼 수 없습니다.
상태 표시 줄 텍스트 색상을 변경하는 방법이 있습니까?
미리 감사드립니다
답변:
목표로 삼 으려는 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
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);// set status text dark
getWindow().setStatusBarColor(ContextCompat.getColor(MainActivity.this,R.color.colorPrimaryDark));// set status background white
그것은 나를 위해 작동합니다
한 번 시도해보세요.
활동 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));