Better-Link-Movement-Method
Better-Link-Movement-Method copied to clipboard
Attempts to improve how clickable links are detected, highlighted and handled in TextView
### Feature Request Hey @saket, Amazing library. Has really helped out a lot. I have a **new feature request** to make. Currently, only single click and long click listeners are...
Swapped usage of `Linkify` with `BetterLinkMovementMethod` and at the very next app launch, boom. The app builds perfectly however, it crashes on the Splash screen with the following trace. ```...
When using the keyboard pressing enter would result in default behavior and it would crash on Lollipop (only mailto: was tested). The new code calls dispatchUrlClick even when using the...
The library is working fine only if we have link between tags for example: Some text http://www.google.com Some text http://www.google.com In this way it will highlight the link and clickable...
When i use this lib in adapter, onClick/onLongClick events are working for only links. If i type simple text and tring to click or long click no action, even parent...
Recently, I noticed the following crash being reported in the _Google Play Developer Console_ for an [Android app](https://github.com/EventFahrplan/EventFahrplan) of mine. Are you aware of an issue here? # Environment -...
I'm trying to open auto links with ChromeCustomTabs, so i intented to use this library to get the url upon click but the library is neither highlighting the links nor...
If we pass incomplete reference URLs in `` tags and capture the URLs and map them to correct methods or activities, it works. But when accessibility is ON it fails...
When i use Japanese keyboard and click to TextView with BetterLinkMovementMethod. Keyboard auto switch to QWERTY
`BetterLinkMovementMethod.linkify(Linkify.ALL,myTextView) .setOnLinkLongClickListener(this::onLinkLongClickListener) myTextView.setOnLongClickListener(v -> { //Some very important code that creates "ITEM" return false; } ... boolean onLinkLongClickListener(...) { // Adds something new to the already created "ITEM" }`