how can we add a Textview below default actionbar title?
I have googled it and tried with custom Actionbar View, but it will change other Actionbar functionality. Any reference?
You can use setSubtitle
.
Set the action bar's subtitle. This will only be displayed if DISPLAY_SHOW_TITLE is set. Set to null to disable the subtitle entirely.
ActionBar ab = getActionBar(); //getSupportActionBar()
ab.setTitle("App Title");
ab.setSubtitle("App sub-title");
You can check Setting Action Bar title and subtitle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With