Advertisement
Guest User

progressbar

a guest
Jul 22nd, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.82 KB | None | 0 0
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    tools:context="com.dicoding.moviecatalogue.MovieFragment">
  6.  
  7.     <!-- TODO: Update blank fragment layout -->
  8.    
  9.     <android.support.v7.widget.RecyclerView
  10.        android:id="@+id/rv_movie"
  11.        android:layout_width="match_parent"
  12.        android:layout_height="match_parent"
  13.        tools:listitem="@layout/item_movie" />
  14.  
  15.     <ProgressBar
  16.        android:id="@+id/progress"
  17.        style="?android:attr/progressBarStyle"
  18.        android:layout_width="wrap_content"
  19.        android:layout_height="wrap_content"
  20.        android:layout_gravity="center"
  21.        android:visibility="visible" />
  22.  
  23. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement