I want to create such dialog for my app:
Is that a DialogFragment?
I want to create such dialog for my app:
Is that a DialogFragment?
It looks like a ProgressBar, combined with the 'Loading' text in a simple LinearLayout (horizontal orientation).
You can probably do it with the fragment API, but depending on your needs including it in a RelativeLayout (via layout_centerInParent) and hidden with setVisible(View.GONE)
or shown with setVisible(View.VISIBLE)
as requested could work just as well.