do any of you know how to get the Text Size in Action Bar's Title
i know we can get ActionBar in android by using this code
ActionBar ab = getActionBar();
and we can change the Title of that ActionBar by using this code
ab.setTitle("This is Title");
Note : I dont want to Change the TextSize in ActionBar's Title , as i can do that by manipulating the XML and using Custom Action Bar. I just want to Know the TextSize of that ActionBar's Title
I assumed ActionBar use TextView inside it for the Title
and i really want to know if any of you know how to get the TextView from ActionBar's Title
or at least, know how to get the TextView's TextSize from ActionBar's Title