What is the command in the menu bar to change case to title case
Answers
Answered by
4
ActionBar actionBar = getActionBar(); actionBar.setBackgroundDrawable(new android.graphics.drawable.ColorDrawable(Color.parseColor("#191919")));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window w = MainActivity.this.getWindow();
w.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
w.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
w.setStatusBarColor(Color.parseColor("#000000"));
}
Or to edit text
getActionBar().setSubtitle("*title case*");
add
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window w = MainActivity.this.getWindow();
w.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
w.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
w.setStatusBarColor(Color.parseColor("#000000"));
}
Or to edit text
getActionBar().setSubtitle("*title case*");
add
Answered by
18
ANSWER
........................
SreshthaAshoka ✯ Brainly star ✯ HAVE ANSWERED THE NASWER THIS QUESTION
https://brainly.in/question/1046512
****************choose the change text case option from the all commands
........................
SreshthaAshoka ✯ Brainly star ✯ HAVE ANSWERED THE NASWER THIS QUESTION
https://brainly.in/question/1046512
****************choose the change text case option from the all commands
Similar questions