skip to Main Content

Android Studio – How can I make the background of my dialog in android transparent?

I am trying to make the background from my dialog transparent. I want the progress bar to be shown in front of my activity. Unfortunately, the background stays always white. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/loading_cont" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" android:backgroundTint="#00000000"…

VIEW QUESTION
Back To Top
Search