Answers for "how to change the color of the action bar in android studio"

0

how to change actionbar color in android programmatically

getSherlockActivity().getSupportActionBar().setBackgroundDrawable(new ColorDrawable(0xff00ACED));
mActionBar.setBackgroundDrawable(new ColorDrawable(0xff00DDED));
mActionBar.setDisplayShowTitleEnabled(false);
mActionBar.setDisplayShowTitleEnabled(true);
Posted by: Guest on June-22-2020
0

actionbar content color in android

getActionBar()/* or getSupportActionBar() */.setTitle(Html.fromHtml("<font color=\"red\">" + getString(R.string.app_name) + "</font>"));
Posted by: Guest on October-06-2020

Code answers related to "how to change the color of the action bar in android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language