Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.