Android Question Problem with icon in activity

masky

Member
Licensed User
Longtime User
Hello,


I have an app, and I'm debugging in different mobiles with Android 4.2.2 and 4.4.2 versions. In the newest Android version, I can’t see the icon in the activity title, but in version 4.2.2 I have not problems.


Any idea? Maybe there is something wrong in the manifest? I copy this…thank you.


'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme, "@android:style/Theme.Holo.Light")
SetActivityAttribute(Fn1, android:screenOrientation, "landscape")
'End of default text.
 

masky

Member
Licensed User
Longtime User
Yes of course. I post the two cases, with icon and without icon
 

Attachments

  • Screenshot_2014-03-05-16-49-19[1].png
    Screenshot_2014-03-05-16-49-19[1].png
    70.1 KB · Views: 312
  • Screenshot_2014-03-06-16-46-35[1].png
    Screenshot_2014-03-06-16-46-35[1].png
    86.7 KB · Views: 295
Upvote 0
Top