diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-07-12 01:35:05 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-07-12 01:35:05 +0000 |
commit | 68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c (patch) | |
tree | 7af5b7763e947e0cf6398d95552d3f6cf2810a36 /app/src/main/res | |
parent | 2b9b8fddfabc40c41152db529ec9311226db7669 (diff) | |
download | infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.tar infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.tar.gz infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.tar.bz2 infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.tar.lz infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.tar.xz infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.tar.zst infinity-for-reddit-68d3a7b09f42aef6c3ec1874af3c9dee4c3eef8c.zip |
Submitting link posts is available. Fixed force stop when a user has no post in ViewUserDetailActivity.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_post_link.xml | 95 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_post_text.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/menu/post_link_activity.xml | 10 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 10 |
4 files changed, 116 insertions, 1 deletions
diff --git a/app/src/main/res/layout/activity_post_link.xml b/app/src/main/res/layout/activity_post_link.xml new file mode 100644 index 00000000..2d57c57b --- /dev/null +++ b/app/src/main/res/layout/activity_post_link.xml @@ -0,0 +1,95 @@ +<?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_link_activity" + tools:context=".PostTextActivity"> + + <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_link_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_link_activity" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_toStartOf="@id/rules_button_post_link_activity" + android:layout_toEndOf="@id/subreddit_icon_gif_image_view_post_link_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_link_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_link_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_link_edit_text_post_link_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="top" + android:padding="16dp" + android:hint="@string/post_link_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 diff --git a/app/src/main/res/layout/activity_post_text.xml b/app/src/main/res/layout/activity_post_text.xml index 2b16fc33..86455f8b 100644 --- a/app/src/main/res/layout/activity_post_text.xml +++ b/app/src/main/res/layout/activity_post_text.xml @@ -4,7 +4,7 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" - android:id="@+id/coordinator_layout_post_detail_activity" + android:id="@+id/coordinator_layout_post_text_activity" tools:context=".PostTextActivity"> <androidx.core.widget.NestedScrollView diff --git a/app/src/main/res/menu/post_link_activity.xml b/app/src/main/res/menu/post_link_activity.xml new file mode 100644 index 00000000..8b9f2e69 --- /dev/null +++ b/app/src/main/res/menu/post_link_activity.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + <item + android:id="@+id/action_send_post_link_activity" + android:orderInCategory="1" + android:title="@string/action_send" + android:icon="@drawable/ic_send_white_24dp" + app:showAsAction="ifRoom" /> +</menu>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 26bfb24c..d2b3a8a8 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -6,6 +6,7 @@ <string name="comment_activity_label_is_replying">Reply</string> <string name="post_text_activity_label">Text Post</string> <string name="subreddit_selection_activity_label">Select a Subreddit</string> + <string name="post_link_activity_label">Link Post</string> <string name="navigation_drawer_open">Open navigation drawer</string> <string name="navigation_drawer_close">Close navigation drawer</string> @@ -97,7 +98,16 @@ <string name="post_url_hint">URL</string> <string name="choose_a_subreddit">Choose a subreddit</string> <string name="rules">Rules</string> + <string name="post_link_hint">URL</string> <string name="subreddits">Subreddits</string> <string name="users">Users</string> + + <string name="dialog_post_type">Post</string> + <string-array name="dialog_post_types_array"> + <item>Text</item> + <item>Link</item> + <item>Image</item> + <item>Video</item> + </string-array> </resources> |