Android Question Msgbox2Async not shown the message/title

Status
Not open for further replies.

mbatgr

Active Member
Licensed User
Longtime User
I make my test on a Nexus 7 2013. I use the new Beta but think was and in previous released B4A version
I get this... Any idea how to fix this...
a code for workaround by immitating a modal dialogbox?


B4X:
Txt = "Do you really want to delete and create a new case self-analysis ?"
    Msgbox2Async(Txt,"A T T E N T I O N","Yes","","No",Null, True) ' MessageBox
    Wait For Msgbox_Result (Result As Int)
    If Result = DialogResponse.POSITIVE Then
        'Return False ' Return = False the Event will not be consumed
        File.Delete(File.DirInternal, "case_analysis_thoughts.db") ' for testing, removes the database
        ToastMessageShow("Δημιουργήθηκε Φόρμα Νέου Περιστατικού", False)
    Else ' we leave the program
        'Return True ' Return = True the Event will be consumed to avoid
        Return
    End If
 
Last edited:

josejad

Expert
Licensed User
Longtime User
Probably is a "problem" with your theme. White text on white background.

Check:
 
Upvote 0

mbatgr

Active Member
Licensed User
Longtime User
Fixed by modified the manifest
BUT...
Sorry for my ignorance but...
How to install the XUI_Views.b4xlib to tablet? Using which app?
It automatically asking me to open it suggesting 2 other unrelated apps I have installed on my tablet e ROM ToolBox...
And how to choose the installed directory?
 
Last edited:
Upvote 0
Status
Not open for further replies.
Top