< Android 3.0 デバイスで ActionBarSherlock ActionBar タブのタブ テキストを変更しようとしています。
デバイス > Android 3.0 では、テキストが単純に 2 行で折り返されます。Android 3.0 より前のデバイスでは、テキストは 1 行であり、ellipsize: marquee および marqueeRepeatLimit: marquee_forever に設定されているようです。
Android 3.0未満のデバイスでもこれを変更して、テキストを2行にしようとしています。
これがやろうとしていることです:
<style name="MyTheme" parent="@style/Theme.Sherlock">
<item name="actionBarTabTextStyle">@style/MyActionBarTabTextStyle</item>
</style>
<style name="MyActionBarTabTextStyle" parent="Widget.Sherlock.ActionBar.TabText">
<item name="android:ellipsize">end</item>
<item name="android:lines">2</item>
<item name="android:textColor">#f00</item>
</style>
このtextColor
属性は、私が正しいことをしていることを確認するためにあります。はい、そうです。タブのテキストは赤です。
残念ながら、楕円サイズの設定は効果がないようです。
これを変更する方法についてのアイデアはありますか?