aboutsummaryrefslogblamecommitdiff
path: root/app/src/main/res/layout/fragment_flair_bottom_sheet.xml
blob: 41a12ab8589990cdb6317663e819bbb710c6528c (plain) (tree)
1
2
3
4
5
6
7





                                                                        
                                                  





                                            

                                                 














                                                                     
                                 

                                                 






                                                             
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:application=".FlairBottomSheetFragment">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="16dp"
        android:text="@string/flair"
        android:textSize="?attr/font_18"
        android:fontFamily="?attr/font_family" />

    <ProgressBar
        android:id="@+id/progress_bar_flair_bottom_sheet_fragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="36dp"
        android:layout_gravity="center" />

    <TextView
        android:id="@+id/error_text_view_flair_bottom_sheet_fragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:gravity="center"
        android:padding="48dp"
        android:visibility="gone"
        android:textSize="?attr/font_default"
        android:fontFamily="?attr/font_family" />

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view_bottom_sheet_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>