diff options
author | Alex Ning <chineseperson5@gmail.com> | 2019-08-20 07:01:54 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2019-08-20 07:01:54 +0000 |
commit | 029bbc951b3b7d128b9eb1a469942a8f03676d83 (patch) | |
tree | 17ecdba34d7bd6ffd49a55d47efbb3f7fdda394d /app/src/main/res | |
parent | a340517974de51293437ab3bf9f036b15408a58c (diff) | |
download | infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.tar infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.tar.gz infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.tar.bz2 infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.tar.lz infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.tar.xz infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.tar.zst infinity-for-reddit-029bbc951b3b7d128b9eb1a469942a8f03676d83.zip |
Handle sending comment fails. Fixed snackbar hidden by keyboard in some activities. Minor bugs fixed.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_comment.xml | 46 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 5 |
2 files changed, 29 insertions, 22 deletions
diff --git a/app/src/main/res/layout/activity_comment.xml b/app/src/main/res/layout/activity_comment.xml index 65abe106..76a053bf 100644 --- a/app/src/main/res/layout/activity_comment.xml +++ b/app/src/main/res/layout/activity_comment.xml @@ -21,31 +21,37 @@ </com.google.android.material.appbar.AppBarLayout> - <LinearLayout + <androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical" - android:padding="16dp" app:layout_behavior="@string/appbar_scrolling_view_behavior"> - <ru.noties.markwon.view.MarkwonView - android:id="@+id/comment_parent_markwon_view_comment_activity" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginBottom="16dp" - android:textSize="16sp" /> - - <EditText - android:id="@+id/comment_edit_text_comment_activity" + <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" - android:gravity="top" - android:hint="@string/write_comment_hint" - android:inputType="textCapSentences|textMultiLine" - android:textSize="18sp" - android:background="#00000000" - android:textColor="@color/primaryTextColor" /> - - </LinearLayout> + android:orientation="vertical" + android:padding="16dp"> + + <ru.noties.markwon.view.MarkwonView + android:id="@+id/comment_parent_markwon_view_comment_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="16dp" + android:textSize="16sp" /> + + <EditText + android:id="@+id/comment_edit_text_comment_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="top" + android:hint="@string/write_comment_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/values/strings.xml b/app/src/main/res/values/strings.xml index f2b482a3..5a245f76 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -2,7 +2,7 @@ <string name="app_name">Infinity</string> <string name="login_activity_label">Login</string> <string name="search_activity_label">Search</string> - <string name="comment_activity_label">Add Comment</string> + <string name="comment_activity_label">Send Comment</string> <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> @@ -104,7 +104,8 @@ <string name="lazy_mode_start">Lazy Mode starts in %1$.1fs</string> <string name="lazy_mode_stop">Lazy Mode stopped</string> - <string name="write_comment_hint">Your interesting thoughts here</string> + <string name="write_comment_hint">Your interesting thought here</string> + <string name="comment_content_required">Where is your interesting thought</string> <string name="sending_comment">Sending</string> <string name="send_comment_failed">Could not send this comment</string> <string name="parse_sent_comment_failed">The comment is sent but unable to get the sent comment</string> |