diff options
author | steckbrief <steckbrief@chefmail.de> | 2016-10-23 15:33:35 +0200 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2016-10-23 15:33:35 +0200 |
commit | e98aa48990d08b75f689c794bf720c5efe21a4b7 (patch) | |
tree | b580105c43d7d31416d7293ca536910e3066c326 /src/main/res/layout/message_received.xml | |
parent | 9ec29bb1dcf664fea606105b7e700641a4b44ae4 (diff) |
Fixes FS#237: Enable long click in layout instead of programmatically
Diffstat (limited to 'src/main/res/layout/message_received.xml')
-rw-r--r-- | src/main/res/layout/message_received.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/res/layout/message_received.xml b/src/main/res/layout/message_received.xml index d331b3ef..029b0d74 100644 --- a/src/main/res/layout/message_received.xml +++ b/src/main/res/layout/message_received.xml @@ -46,7 +46,8 @@ android:layout_marginTop="8dp" android:layout_marginBottom="4dp" android:adjustViewBounds="true" - android:background="@color/black87" + android:longClickable="true" + android:background="@color/primaryText" android:scaleType="centerCrop" /> <github.ankushsachdeva.emojicon.EmojiconTextView @@ -54,6 +55,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:autoLink="web|phone|email" + android:longClickable="true" android:textColor="@color/primaryText" android:textSize="?attr/TextSizeBody" app:emojiconSize="?attr/EmojiconSizeBody" /> @@ -61,6 +63,7 @@ <Button android:id="@+id/download_button" style="?android:attr/buttonStyleSmall" + android:longClickable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:visibility="gone" /> |