Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 26th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 27  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ActionBarSherlock - Tab Text ellipsize on <Android 3.0 devices
  2. <style name="MyTheme" parent="@style/Theme.Sherlock">
  3.     <item name="actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>
  4. </style>
  5.  
  6. <style name="MyActionBarTabTextStyle" parent="Widget.Sherlock.ActionBar.TabText">
  7.     <item name="android:ellipsize">end</item>
  8.     <item name="android:lines">2</item>
  9.     <item name="android:textColor">#f00</item>
  10. </style>