所以我对Android开发很新,我只是无法在操作栏中显示任何图标。
我使用最少的sdk API 15创建一个新项目,并在Theme-Dropdown(XML-Design-View)中选择“Holo.Light”。
所以我希望它看起来像这样: http://i.stack.imgur.com/zfgCq.png
但它看起来像这样: http://i.imgur.com/Lmxutct.png
我的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
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>
我想我必须以某种方式将android:theme更改为Holo.Light?但是没有定义任何资源,我似乎无法添加任何..
my styles.xml:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"/>
<!-- Customize your theme here. -->
ic_launcher.png位于drawables文件夹中..所以我该怎么办才能显示该死的图标?
(我使用我的HTC一个M8顺便说一下,但它也不会出现在模拟器上)
谢谢!
答案 0 :(得分:15)
要在ActionBar上显示图标,您必须添加:
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setIcon(R.drawable.ic_launcher);
在onCreate
方法中。
答案 1 :(得分:1)
我用这段代码解决的另一种方法
ActionBar actionBar = getSupportActionBar();
actionBar.setLogo(R.drawable.ic_launcher);
actionBar.setDisplayUseLogoEnabled(true);
actionBar.setDisplayShowHomeEnabled(true);