Skip to content Skip to sidebar Skip to footer

Android Tab Icons Don't Show Up

Right now I'm trying to get the Tab layout to work. I've done everything just like in Android TabView tutorial, app runs ok, but the problem is that I dont see any icons that I've

Solution 1:

without knowing much in depth about themes, i have discovered that specifying the theme @android:style/Theme.NoTitleBar in the application manifest solves the issue and the icons show up in the tabs.

<applicationandroid:icon="@drawable/ic_launcher"android:label="@string/app_name"android:theme="@android:style/Theme.NoTitleBar" 
    ><!-- MANIFEST --></application>

Hope, that helps!

Post a Comment for "Android Tab Icons Don't Show Up"