In my app I am using up navigation.
In newer Android apis, like Android 4.2, the up button is comprised by an arrow and the activity title, these two elements (arrow and activity title) look like a single button. But in older APIs, like Android 2.3, the up button is just the arrow, or the arrow and the icon, if you set a icon to the activity.
But my app does not have an icon in the activities, thus the user needs to click exactly in the arrow to perform up navigation, once the ub button is just the arrow. But this arrow is too small.
I'd like to make the activity title clickable too. That is, the up navigation in the older Android versions be the same as in the newer Android versions.
Someone know how to do this?
Thank you!
ps: In my manifest, each activity has this element:
android:icon="@android:color/transparent"
Thus, my app does not have an icon on the side of the up button arrow