in your layout XML file
<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"
android:padding="@dimen/padding15"
android:visibility="visible" />
Then in your Activity or Fragment’s code
ProgressBar mProgressBar=(ProgressBar)findViewById(R.id.progress_bar);
then you can set it’s visibility property to be invisible or visible:
mProgressBar.setVisibility(View.VISIBLE);
or
mProgressBar.setVisibility(View.GONE);
or
mProgressBar.setVisibility(View.INVISIBLE);
solved How to make a Progress Bar [closed]