使用compat v7 Action Bar创建Android应用程序时,其中没有应用程序图标。我甚至以编程方式尝试过,没有结果。 清单
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Newsfeed_Activity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
和风格
<resources>
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
</style>
答案 0 :(得分:1)
使用Material主题(API 21或更新版本中的默认设置)时,导航按钮(以前称为“Home”)将占用应用程序图标以前占用的空间。希望表达更强大品牌的应用应在操作栏和其他应用程序Chrome中大量使用其品牌颜色,或使用logo代替其标准标题文字。
因此,如果您想在操作栏中显示代表您应用的徽标,则应使用ActionBar.setLogo() - 注意:这将取代标题。