Computer Science, asked by Nirankushbaishya008, 1 year ago

What is the command in the menu bar to change case to title case

Answers

Answered by prathamesh1855
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
Answered by Anonymous
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

Similar questions