bluesky139 / LTweaks

This is my little tweaks for some Android apps and system, Xposed is needed for most functions.
75 stars 15 forks source link

Click on links in YouTube App not possible. #30

Open henningsieh opened 6 years ago

henningsieh commented 6 years ago

If you enable the double-tap functionality for selecting text, it's not possible anymore to click on links in the YouTube app in the video description. Everytime you touch the screen in this area it will be interpreted as a double attempt and some text will be selected instead of normal swiping and clicking.

bluesky139 commented 6 years ago

This is a strange issue, I don't know why this function is triggered without double tap, I'll try to investigate more.

henningsieh commented 6 years ago

Ok, cool! :-)

Maybe I should mention, that I use the "iYTBP - injected YouTube Background Playback"-version on Magisk-Root.

bluesky139 commented 6 years ago

After some investigation, I found the problem, because Youtube is reusing TextView of description, you double tap on description view, I make it selectable, then close this video, open another one, the description view is not be destroyed to recreate a new one, it still be the old one.

But I can't find a better way to solve this.

henningsieh commented 6 years ago

Ok, I don't understand much of it... so TextView of description / description view is indestructible?

bluesky139 commented 6 years ago

I think I can explain more. In general, any view will be destroyed after leaving that page, but Youtube is not, there's conflict between selectable and hyperlink, so we have this issue.

Maybe I can use another some way to solve this, but for now, I have to leave it here.