Android Question Show a busy gif while loading app

Alberto Michelis

Well-Known Member
Licensed User
Longtime User
Hi, in some devices my app takes some secs to load and what I see is the attached image. Image that dont match with any of my activities.
How can I change it to be a waiting image or have a waiting gif?
Thanks
 

Attachments

  • WhatsApp Image 2020-03-19 at 11.20.53.jpeg
    WhatsApp Image 2020-03-19 at 11.20.53.jpeg
    18.5 KB · Views: 144

Alberto Michelis

Well-Known Member
Licensed User
Longtime User
Tested and does not see any change..., any way of change that ugly page or to add it a logo or something?

THis is part of my code:
B4X:
Sub Activity_Create(FirstTime As Boolean)
    
    LogColor("arrancamos...",Colors.Blue)
    TimeZone = DateTime.GetTimeZoneOffsetAt(DateTime.Now)
    HoraInicioMercado=11+3+TimeZone
    HoraFinMercado   =18+3+TimeZone
    
    If FirstTime = True Then
        Try
            manager.Initialize("manager", key)
            manager.DebugLogging = True
        Catch
            Log("Imposible lanzar billing")
        End Try       
    End If
    LogColor("billing ok...",Colors.Blue)
    
    Sleep(100)
    Activity.LoadLayout("paginicio")
    Activity.Initialize("Main")
    Activity.Title = "PortIt"
 
Upvote 0
Top