diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-07-17 08:13:55 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-07-17 08:13:55 +0000 |
commit | d06f66975e40ebbf599ea66ed4c9794de085a890 (patch) | |
tree | 459758016f6666d0ebb941b3067cc27dc9679e69 /app/src/main/res/layout/item_comment.xml | |
parent | 7d1aa07b9d581c08bb2ca02b09880e78a37cac40 (diff) | |
download | infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.tar infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.tar.gz infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.tar.bz2 infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.tar.lz infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.tar.xz infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.tar.zst infinity-for-reddit-d06f66975e40ebbf599ea66ed4c9794de085a890.zip |
Add a boolean variable isSendingMessage to avoid sending multiple messages before the first message is sent in ViewPrivateMessageActivity. When the message is being sent, the send button will have a secondary text color. Use wrap_content for comment content in item_comment.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/layout/item_comment.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/res/layout/item_comment.xml b/app/src/main/res/layout/item_comment.xml index dee6d50c..e2ab9170 100644 --- a/app/src/main/res/layout/item_comment.xml +++ b/app/src/main/res/layout/item_comment.xml @@ -106,7 +106,7 @@ <TextView android:id="@+id/comment_markdown_view_item_post_comment" - android:layout_width="match_parent" + android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginStart="16dp" |