0
I’m using the Eclipse "Luna Service Release 2 (4.4.2)" to create my projects on Android.
Whenever I create a project and run it, Actionbar does not show the icon that is set in the file Androidmanifest.xml:
android:icon="@drawable/ic_launcher"
What I have to do to get the app icon shown in ActionBar?
What version of SDK? Are you using
AppCompat? If possible, show your Styles.xml or xml themes..– Paulo Rodrigues
Hello Paulo Rodrigues! My Styles.xml is the default: <Resources> <style name="Appbasetheme" Parent="Theme.AppCompat.Light"</style> <style name="Apptheme" Parent="Appbasetheme"> </style> </Resources>
– Vitor Mendanha