Android Question msgbox2async icon not displayed

tufanv

Expert
Licensed User
Longtime User
Hello,

Ican't see the icon in msgbox2async box with the following code :

B4X:
Msgbox2Async("You want to rate ?", "", "Evet", "İptal", "", LoadBitmap(File.DirAssets,"star.png"),True)

is stg wrong with it ?
 

JhoeyBoy

Member
Licensed User
Longtime User
Hello,

Ican't see the icon in msgbox2async box with the following code :

B4X:
Msgbox2Async("You want to rate ?", "", "Evet", "İptal", "", LoadBitmap(File.DirAssets,"star.png"),True)

is stg wrong with it ?


you have to Put Title for the messagebox to have space for the icon

Msgbox2Async("You want to rate ?", "TITLE", "Evet", "İptal", "",LoadBitmap(File.DirAssets,"star.png"),False)
 
Upvote 0
Top