We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276bf39 commit d761991Copy full SHA for d761991
1 file changed
app/src/main/java/org/schabi/newpipe/fragments/list/comments/CommentRepliesFragment.java
@@ -11,6 +11,7 @@
11
import androidx.annotation.Nullable;
12
import androidx.constraintlayout.widget.ConstraintLayout;
13
import androidx.core.text.HtmlCompat;
14
+import android.text.method.LinkMovementMethod;
15
16
import com.evernote.android.state.State;
17
@@ -110,7 +111,7 @@ protected Supplier<View> getListHeaderSupplier() {
110
111
TextLinkifier.fromDescription(binding.commentContent, item.getCommentText(),
112
HtmlCompat.FROM_HTML_MODE_LEGACY, getServiceById(item.getServiceId()),
113
item.getUrl(), disposables, null);
-
114
+ binding.commentContent.setMovementMethod(LinkMovementMethod.getInstance());
115
return binding.getRoot();
116
};
117
}
0 commit comments