Android Question icons of msgbox2 not displayed in two devices [ Resolved ]

luiswagnersantos

Member
Licensed User
Longtime User
Hello guys how are you?
I need a tip, please.

I'm using the environment below in my development.


My settings
OS: Windows 10 Home -64 bits


B4A Version : 5.80

JavaSDK:C:\Program Files\Java\jdk1.8.0_77\bin\javac.exe
Android SDK: I:\Android\platforms\android-14\android.jar .

I have two devices
First:Asus
Model: ASUS_T00J
Android : 5.0


Second:Motorola :
Moto G (1st Generation)
Android 5.1


Asus device of the icons do not appear msgbox2
but the motorola yes .

example:

Msgbox2 ( " New Function " , " Warning " , " OK ", "" , "", LoadBitmap ( File.DirAssets , " icon_done_32.png " ) )

This has the relationship with the processor ?

Asus phone

See pictures below:
asus-jpg--2



motorola moto G:

motorola_moto_g-png
 

Attachments

  • Motorola Moto G.png
    Motorola Moto G.png
    131.5 KB · Views: 181
  • Asus.jpg
    Asus.jpg
    165.6 KB · Views: 185

luiswagnersantos

Member
Licensed User
Longtime User
'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: https://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$")

'End of default text.

this is correct ?

Tanks
Wagner
 
Upvote 0
Top