aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/activity_post_text.xml
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2019-07-09 09:47:40 +0000
committerAlex Ning <chineseperson5@gmail.com>2019-07-09 09:47:40 +0000
commit117a33be3b3c112bcde45fce3974851a8ae58c47 (patch)
tree3bb9aa0cd13378dacc2b867caed991b823b8f79a /app/src/main/res/layout/activity_post_text.xml
parent4338dbd2774925d9ecbe6a29616d330d5f2602a2 (diff)
downloadinfinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.tar
infinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.tar.gz
infinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.tar.bz2
infinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.tar.lz
infinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.tar.xz
infinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.tar.zst
infinity-for-reddit-117a33be3b3c112bcde45fce3974851a8ae58c47.zip
Minor UI tweaks. Preparing for submitting text posts.
Diffstat (limited to 'app/src/main/res/layout/activity_post_text.xml')
-rw-r--r--app/src/main/res/layout/activity_post_text.xml94
1 files changed, 94 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_post_text.xml b/app/src/main/res/layout/activity_post_text.xml
new file mode 100644
index 00000000..cb08e1f2
--- /dev/null
+++ b/app/src/main/res/layout/activity_post_text.xml
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context=".PostTextActivity">
+
+ <androidx.core.widget.NestedScrollView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="8dp"
+ android:paddingBottom="8dp"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp">
+
+ <pl.droidsonroids.gif.GifImageView
+ android:id="@+id/subreddit_icon_gif_image_view_post_text_activity"
+ android:layout_width="24dp"
+ android:layout_height="24dp"
+ android:layout_alignParentStart="true"
+ android:layout_centerVertical="true"
+ android:src="@drawable/subreddit_default_icon" />
+
+ <TextView
+ android:id="@+id/subreddit_name_text_view_post_text_activity"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_toStartOf="@id/rules_button_post_text_activity"
+ android:layout_toEndOf="@id/subreddit_icon_gif_image_view_post_text_activity"
+ android:layout_centerVertical="true"
+ android:layout_marginStart="32dp"
+ android:layout_marginEnd="16dp"
+ android:text="@string/choose_a_subreddit" />
+
+ <Button
+ android:id="@+id/rules_button_post_text_activity"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentEnd="true"
+ android:layout_centerVertical="true"
+ android:text="@string/rules"
+ android:textColor="@color/colorAccent" />
+
+ </RelativeLayout>
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:background="@color/dividerColor" />
+
+ <EditText
+ android:id="@+id/post_title_edit_text_post_text_activity"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="top"
+ android:padding="16dp"
+ android:hint="@string/post_title_hint"
+ android:inputType="textCapSentences|textMultiLine"
+ android:textSize="18sp"
+ android:background="#00000000"
+ android:textColor="@color/primaryTextColor" />
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:background="@color/dividerColor" />
+
+ <EditText
+ android:id="@+id/post_text_content_edit_text_post_text_activity"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="top"
+ android:padding="16dp"
+ android:hint="@string/post_text_content_hint"
+ android:inputType="textCapSentences|textMultiLine"
+ android:textSize="18sp"
+ android:background="#00000000"
+ android:textColor="@color/primaryTextColor" />
+
+ </LinearLayout>
+
+ </androidx.core.widget.NestedScrollView>
+
+</androidx.coordinatorlayout.widget.CoordinatorLayout> \ No newline at end of file