Hoi,
i have used this part in my manifest:
After changing it to:
the icons in the menu didnt appear any longer (generated this way):
In the "old" version the menu button rises max. 6 menu items (with icons).
In the new version a menu list appears as usual, without icons.
Also the screen appears larger than the screen, so i have to declare
in the module attributes.
Where/what could be/is the problem ?
i have used this part in my manifest:
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
After changing it to:
B4X:
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="17"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.
the icons in the menu didnt appear any longer (generated this way):
B4X:
Activity.AddMenuItem2("Home","Home",LoadBitmap(File.DirAssets,"home.png"))
In the "old" version the menu button rises max. 6 menu items (with icons).
In the new version a menu list appears as usual, without icons.
Also the screen appears larger than the screen, so i have to declare
B4X:
#IncludeTitle: False
Where/what could be/is the problem ?