“cara mengubah warna statusbar untuk aktivitas di studio android” Kode Jawaban

cara mengubah warna statusbar untuk aktivitas di studio android

Window window = activity.getWindow();

// clear FLAG_TRANSLUCENT_STATUS flag:
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);

// add FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS flag to the window
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);

// finally change the color
window.setStatusBarColor(ContextCompat.getColor(activity,R.color.my_statusbar_color));
Worried Wren

Ubah status bilah teks warna android secara terprogram

WindowInsetsControllerCompat(<window>, <view>).isAppearanceLightStatusBars = Boolean
Window window = Activity.getWindow();
View view = window.getDecorView();

// You need androidx.core for this
Stupid Squirrel

Jawaban yang mirip dengan “cara mengubah warna statusbar untuk aktivitas di studio android”

Pertanyaan yang mirip dengan “cara mengubah warna statusbar untuk aktivitas di studio android”

Lebih banyak jawaban terkait untuk “cara mengubah warna statusbar untuk aktivitas di studio android” di Kotlin

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya