ProgressBar not displaying

自作多情 提交于 2019-12-06 05:57:40

I was too facing same problem, may its there but hiding because of other views. what i did in your case would minor change in xml file

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ProgressBar
android:id="@+id/pb_loading_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="visible"/>


<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/logo"
    android:src="@drawable/app_icon"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="120dp"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_below="@+id/logo"
    android:textSize="18sp"
    android:id="@+id/subtitle"
    android:textColor="@color/secondary_text"
    android:layout_marginTop="30dp"
    android:text="QUICK BROWN FOX"/>

exactly nothing but progress bar on top of other, this work for me i don't know why.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!