Android Question ProgressDialogShow is making status bar disappear

Alberto Iglesias

Well-Known Member
Licensed User
Longtime User
Hello everyone!

Anyone has this behaviour before?

After call ProgressDialogShow("Aguarde...") the status bar is disapearing!

Without this line, statur bar is working fine.

Before
1582140702824.png


Call ProgressDialogShow
1582140725505.png


After
1582140738398.png



Any ideas why this is happening?

Is look like something with dim on background!??

Thanks in advance!
 

Alberto Iglesias

Well-Known Member
Licensed User
Longtime User
I have this on my manifest
B4X:
CreateResource(values, theme.xml,
<resources>
    <style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">#0098FF</item>
        <item name="colorPrimaryDark">#007CF5</item>
        <item name="colorAccent">#3F89CA</item>
        <item name="windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="android:windowLightStatusBar">false</item> 
        <item name="android:windowTranslucentNavigation">false</item>
         <item name="android:windowTranslucentStatus">true</item>
    </style>
</resources>
)

but no make any sense!
 
Upvote 0
Top