aboutsummaryrefslogblamecommitdiff
path: root/app/src/main/res/layout/fragment_flair_bottom_sheet.xml
blob: 7827bb3a66c0711c92a85b40d903f3157d89946f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                                                                        
                                                  



                                            



                                    
                                    
                                                  

                                                 














                                                                     
                                 

                                                 






                                                             
<?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:paddingTop="16dp"
        android:paddingBottom="16dp"
        android:paddingStart="32dp"
        android:paddingEnd="32dp"
        android:text="@string/flair"
        android:textColor="?attr/primaryTextColor"
        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>