I want to add the screen title to the ActionBar but make it unclickable, so only the up navigation icon is clickable. I just want to add static text which isn't part of the navigation.
If I just set the title its clickable along with the uo navigation icon.
I don't want to set custom navigation layout as some of my screens use tabs navigation.
how can I do this ?
<style name="AppTheme.ActionBar.Title" parent="@style/Theme.Sherlock.Light">
<item name="actionBarStyle">@style/actionBarStyle.Title</item>
<item name="android:actionBarStyle">@style/actionBarStyle.Title</item>
<item name="android:homeAsUpIndicator">@drawable/icon_back</item>
<item name="homeAsUpIndicator">@drawable/icon_back</item>
</style>
<style name="actionBarStyle.Title" parent="@style/Widget.Sherlock.Light.ActionBar.Solid">
<item name="android:background">@drawable/header_bar</item>
<item name="background">@drawable/header_bar</item>
<item name="android:displayOptions">homeAsUp|showTitle</item>
<item name="displayOptions">homeAsUp|showTitle</item>
</style>