aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/activity_post_video.xml
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2019-07-14 13:29:10 +0000
committerAlex Ning <chineseperson5@gmail.com>2019-07-14 13:29:10 +0000
commite0212985f806088c1ae2dc26ad75001ad5ce9549 (patch)
treecfae6d2c012f9a28ae01cc53ebd138454cc0561f /app/src/main/res/layout/activity_post_video.xml
parent9d1e53b585018a5b44f63af00cd494a35b0494d8 (diff)
downloadinfinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.tar
infinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.tar.gz
infinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.tar.bz2
infinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.tar.lz
infinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.tar.xz
infinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.tar.zst
infinity-for-reddit-e0212985f806088c1ae2dc26ad75001ad5ce9549.zip
Sumbitting gif and video posts is now available.
Diffstat (limited to 'app/src/main/res/layout/activity_post_video.xml')
-rw-r--r--app/src/main/res/layout/activity_post_video.xml130
1 files changed, 130 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_post_video.xml b/app/src/main/res/layout/activity_post_video.xml
new file mode 100644
index 00000000..4b11b862
--- /dev/null
+++ b/app/src/main/res/layout/activity_post_video.xml
@@ -0,0 +1,130 @@
+<?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"
+ android:id="@+id/coordinator_layout_post_video_activity"
+ tools:context=".PostImageActivity">
+
+ <androidx.core.widget.NestedScrollView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:fillViewport="true">
+
+ <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_video_activity"
+ android:layout_width="24dp"
+ android:layout_height="24dp"
+ android:layout_alignParentStart="true"
+ android:layout_centerVertical="true" />
+
+ <TextView
+ android:id="@+id/subreddit_name_text_view_post_video_activity"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_toStartOf="@id/rules_button_post_video_activity"
+ android:layout_toEndOf="@id/subreddit_icon_gif_image_view_post_video_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_video_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_video_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" />
+
+ <androidx.constraintlayout.widget.ConstraintLayout
+ android:id="@+id/select_video_constraint_layout_post_video_activity"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="32dp">
+
+ <com.google.android.material.floatingactionbutton.FloatingActionButton
+ android:id="@+id/capture_fab_post_video_activity"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/ic_outline_add_a_photo_24px"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toStartOf="@+id/select_from_library_fab_post_video_activity"
+ app:layout_constraintHorizontal_chainStyle="spread" />
+
+ <com.google.android.material.floatingactionbutton.FloatingActionButton
+ android:id="@+id/select_from_library_fab_post_video_activity"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:src="@drawable/ic_outline_select_photo_24px"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toEndOf="@+id/capture_fab_post_video_activity"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintHorizontal_chainStyle="spread" />
+
+ </androidx.constraintlayout.widget.ConstraintLayout>
+
+ <TextView
+ android:id="@+id/select_again_text_view_post_video_activity"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:padding="16dp"
+ android:text="@string/select_again"
+ android:textColor="@color/colorAccent"
+ android:visibility="gone" />
+
+ <ImageView
+ android:id="@+id/image_view_post_video_activity"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:scaleType="fitStart"
+ android:adjustViewBounds="true"
+ android:visibility="gone" />
+
+ </LinearLayout>
+
+ </androidx.core.widget.NestedScrollView>
+
+</androidx.coordinatorlayout.widget.CoordinatorLayout> \ No newline at end of file