在操作栏中不会出现大屏幕的徽标

时间:2014-01-10 06:10:23

标签: android android-actionbar android-screen-support

这里我没有为不同的屏幕创建不同的布局文件。 我希望为每个屏幕显示相同的徽标和图标,对于大屏幕它不会出现,对于操作栏中的正常屏幕,它显示得非常好。请建议我这是错的。 我需要改变什么代码?非常感谢。

自定义操作栏:

 <style name="ActionBar" parent="@android:style/Widget.ActionBar">
<item name="android:icon">@drawable/product_category_logo</item>
<item name="android:background">@drawable/actionbar_theme</item>
<item name="android:backgroundStacked">@color/black</item>
 </style>

1 个答案:

答案 0 :(得分:0)

你可以试试这个......

Updated:

    ActionBar actionBar = getActionBar();

    actionBar.setHomeButtonEnabled(true);

    actionBar.setDisplayShowHomeEnabled(false);
    actionBar.setDisplayShowTitleEnabled(false);
    actionBar.setDisplayShowCustomEnabled(true);