アクションバーのアイコンを消したい、タイトルだけ表示したい。を使ってやりました
ActionBar.setDisplayUseLogoEnabled(false);
と
ActionBar.setDisplayShowHomeEnabled(false);
しかし、アクションバーはタブの下に表示されています。問題を解決する方法を教えてください。前もって感謝します。
アクションバーのアイコンを消したい、タイトルだけ表示したい。を使ってやりました
ActionBar.setDisplayUseLogoEnabled(false);
と
ActionBar.setDisplayShowHomeEnabled(false);
しかし、アクションバーはタブの下に表示されています。問題を解決する方法を教えてください。前もって感謝します。
これを試して:
<style name="YourTheme" parent="@style/Theme.Sherlock.Light">
<item name="android:actionBarStyle">@style/YourActionBar</item>
<item name="actionBarStyle">@style/YourActionBar</item>
</style>
<style name="YourActionBar" parent="@style/Widget.Sherlock.Light.ActionBar">
<item name="android:displayOptions">showTitle</item>
<item name="displayOptions">showTitle</item>
</style>
そしてあなたの活動で:
ActionBar.setDisplayShowTitleEnabled(true);
それは私のために働いた!この助けを願っています。