diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-07-17 01:31:49 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-07-17 01:31:49 +0000 |
commit | ebf542161e94cf6c9c1691b8681717a18afd42c2 (patch) | |
tree | 475daae5efe9b1ead47916dcf567bf6743774a0c /app/src/main/res/layout/fragment_flair_bottom_sheet.xml | |
parent | 116ce0bb24159d89d50296454214231bbd795de7 (diff) | |
download | infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.tar infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.tar.gz infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.tar.bz2 infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.tar.lz infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.tar.xz infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.tar.zst infinity-for-reddit-ebf542161e94cf6c9c1691b8681717a18afd42c2.zip |
Flair, spoiler and nsfw support for submitting posts.
Diffstat (limited to 'app/src/main/res/layout/fragment_flair_bottom_sheet.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_flair_bottom_sheet.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_flair_bottom_sheet.xml b/app/src/main/res/layout/fragment_flair_bottom_sheet.xml new file mode 100644 index 00000000..215ec734 --- /dev/null +++ b/app/src/main/res/layout/fragment_flair_bottom_sheet.xml @@ -0,0 +1,37 @@ +<?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:context=".FlairBottomSheetFragment"> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:padding="16dp" + android:text="@string/flair" + android:textSize="18sp" /> + + <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" /> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/recycler_view_bottom_sheet_fragment" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + +</LinearLayout>
\ No newline at end of file |