-
-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
handle link clicks properly #4297
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: sowjanyakch <[email protected]>
APK file: https://www.kaminsky.me/nc-dev/android-artifacts/4297-talk.apk |
@@ -92,6 +97,16 @@ class IncomingLinkPreviewMessageViewHolder(incomingView: View, payload: Any) : | |||
|
|||
binding.messageText.text = processedMessageText | |||
|
|||
val link = SpannableString(processedMessageText) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
processedMessageText
can be mixed text with hyperlinks. So "test http://anysite.com" can't be directly converted to a link but the link has to be extracted and only this should be underlined and clickable.
Otherwise there could be a ActivityNotFoundException if the link is not valid.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to extract links, code from
talk-android/app/src/main/java/com/nextcloud/talk/chat/data/model/ChatMessage.kt
Line 167 in 7ca68b3
fun isLinkPreview(): Boolean { |
will be helpful. This is the code which decides if the *LinkPreviewMessageViewHolder is applied.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
However thinking about that there can be multiple links inside a message this gets more complicated. Then there might have to be more complex logic similar like it's used for the chip mentions:
fun searchAndReplaceWithMentionSpan( |
@@ -154,7 +154,6 @@ | |||
app:outcomingTextLinkColor="@color/high_emphasis_text" | |||
app:outcomingTextSize="@dimen/chat_text_size" | |||
app:outcomingTimeTextSize="12sp" | |||
app:textAutoLink="all" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removing
app:textAutoLink="all"
works and may be mandatory to fix the bug.
However this will change the behavior of all ChatMessage types and automatic link detection won't work as described in
#3481 (comment)
fix #1789
🚧 TODO
🏁 Checklist
/backport to stable-xx.x