You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an otherwise perfect app, a small apparent boo-boo.
At the bottom of the About dialog, are two strings formatted like links, but which do not respond to clicks.
To fix this is very easy import android.text.util.Linkify;
... on the view containing the text, Linkify.addLinks( view, Linkify.WEB_URLS );
The text was updated successfully, but these errors were encountered:
In an otherwise perfect app, a small apparent boo-boo.
At the bottom of the About dialog, are two strings formatted like links, but which do not respond to clicks.
To fix this is very easy
import android.text.util.Linkify;
... on the view containing the text,
Linkify.addLinks( view, Linkify.WEB_URLS );
The text was updated successfully, but these errors were encountered: