浏览代码

Merge pull request #1303 from nextcloud/bugfix/1274/preventTextSelection

Prevent text selection on messages
Andy Scherzinger 3 年之前
父节点
当前提交
a092f30d56

+ 3 - 1
app/src/main/res/layout/item_custom_incoming_text_message.xml

@@ -55,6 +55,7 @@
             android:layout_height="wrap_content"
             android:layout_marginBottom="4dp"
             android:textColor="@color/textColorMaxContrast"
+            android:textIsSelectable="false"
             android:textSize="12sp" />
 
         <androidx.emoji.widget.EmojiTextView
@@ -62,7 +63,7 @@
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:lineSpacingMultiplier="1.2"
-            android:textIsSelectable="true"
+            android:textIsSelectable="false"
             app:layout_alignSelf="flex_start"
             app:layout_flexGrow="1"
             app:layout_wrapBefore="true" />
@@ -73,6 +74,7 @@
             android:layout_height="wrap_content"
             android:layout_below="@id/messageText"
             android:layout_marginStart="8dp"
+            android:textIsSelectable="false"
             app:layout_alignSelf="center" />
 
     </com.google.android.flexbox.FlexboxLayout>

+ 5 - 4
app/src/main/res/layout/item_custom_outcoming_text_message.xml

@@ -50,8 +50,8 @@
             android:layout_alignWithParentIfMissing="true"
             android:lineSpacingMultiplier="1.2"
             android:textColorHighlight="@color/nc_grey"
-            android:textIsSelectable="true"
-            tools:text="Talk to ayou later!" />
+            android:textIsSelectable="false"
+            tools:text="Talk to you later!" />
 
         <TextView
             android:id="@id/messageTime"
@@ -59,6 +59,7 @@
             android:layout_height="wrap_content"
             android:layout_below="@id/messageText"
             android:layout_marginStart="8dp"
+            android:textIsSelectable="false"
             app:layout_alignSelf="center"
             tools:text="10:35" />
 
@@ -68,8 +69,8 @@
             android:layout_height="wrap_content"
             android:layout_below="@id/messageTime"
             android:layout_marginStart="8dp"
-            app:layout_alignSelf="center"
-            android:contentDescription="@null" />
+            android:contentDescription="@null"
+            app:layout_alignSelf="center" />
 
     </com.google.android.flexbox.FlexboxLayout>
 </RelativeLayout>

+ 2 - 0
app/src/main/res/layout/item_message_quote.xml

@@ -46,6 +46,7 @@
         android:layout_toEndOf="@id/quoteColoredView"
         android:ellipsize="end"
         android:textColor="@color/textColorMaxContrast"
+        android:textIsSelectable="false"
         android:textSize="12sp"
         tools:text="Jane Doe" />
 
@@ -82,6 +83,7 @@
             android:layout_below="@id/quotedMessageImage"
             android:layout_alignStart="@id/quotedMessageAuthor"
             android:lineSpacingMultiplier="1.2"
+            android:textIsSelectable="false"
             android:textSize="14sp"
             app:layout_alignSelf="flex_start"
             app:layout_flexGrow="1"