From 6a038573c357c0bda696f2b4369862648dfa9a17 Mon Sep 17 00:00:00 2001 From: Alex Ning Date: Sun, 22 Sep 2019 22:08:40 +0800 Subject: [PATCH] Show a toast after comment is sent. --- .../ml/docilealligator/infinityforreddit/CommentActivity.java | 2 ++ app/src/main/res/values/strings.xml | 1 + 2 files changed, 3 insertions(+) diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/CommentActivity.java b/app/src/main/java/ml/docilealligator/infinityforreddit/CommentActivity.java index 46f1c850..dd914ea3 100644 --- a/app/src/main/java/ml/docilealligator/infinityforreddit/CommentActivity.java +++ b/app/src/main/java/ml/docilealligator/infinityforreddit/CommentActivity.java @@ -15,6 +15,7 @@ import android.view.Window; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; import android.widget.TextView; +import android.widget.Toast; import androidx.annotation.NonNull; import androidx.annotation.Nullable; @@ -216,6 +217,7 @@ public class CommentActivity extends AppCompatActivity { new SendComment.SendCommentListener() { @Override public void sendCommentSuccess(CommentData commentData) { + Toast.makeText(CommentActivity.this, R.string.send_comment_success, Toast.LENGTH_SHORT).show(); Intent returnIntent = new Intent(); returnIntent.putExtra(EXTRA_COMMENT_DATA_KEY, commentData); returnIntent.putExtra(EXTRA_PARENT_FULLNAME_KEY, parentFullname); diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 84595591..6d7b0153 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -116,6 +116,7 @@ Your interesting thought here Where is your interesting thought Sending + Comment sent Could not send this comment The comment is sent but unable to get the sent comment