Advertisement
rizkirchm

Fragment_Followers.xml

Dec 12th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.25 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context=".ui.fragment.FollowersFragment">
  8.  
  9.     <androidx.constraintlayout.widget.ConstraintLayout
  10.        android:layout_width="match_parent"
  11.        android:layout_height="match_parent"
  12.        android:padding="8dp"
  13.        >
  14.  
  15.         <ProgressBar
  16.            android:id="@+id/followers_progressBar"
  17.            android:layout_width="wrap_content"
  18.            android:layout_height="wrap_content"
  19.            android:visibility="gone"
  20.            app:layout_constraintBottom_toBottomOf="parent"
  21.            app:layout_constraintEnd_toEndOf="parent"
  22.            app:layout_constraintStart_toStartOf="parent"
  23.            app:layout_constraintTop_toTopOf="parent" />
  24.  
  25.         <androidx.recyclerview.widget.RecyclerView
  26.            android:id="@+id/rv_followersFragment"
  27.            android:layout_width="match_parent"
  28.            android:layout_height="match_parent"/>
  29.  
  30.     </androidx.constraintlayout.widget.ConstraintLayout>
  31.  
  32. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement