Guest User

Untitled

a guest
Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <TextView
  2. android:text="My web site: www.stackoverflow.com"
  3. android:id="@+id/TextView1"
  4. android:layout_height="wrap_content"
  5. android:layout_width="wrap_content"
  6. android:autoLink="web">
  7. </TextView>
  8.  
  9. final TextView myClickableUrl = (TextView) findViewById(R.id.myClickableUrlTextView);
  10. myClickableUrl.setText("Click my web site: www.stackoverflow.com");
  11. Linkify.addLinks(myClickableUrl, Linkify.WEB_URLS);
Add Comment
Please, Sign In to add comment