this is my code :
TextView aboutL1 = (TextView) findViewById(R.id.aboutL2); aboutL1.setText(Html.fromHtml(\"This app is open source.The source
You need to call setMovementMethod:
aboutL1.setMovementMethod(LinkMovementMethod.getInstance());
(you may not even need to call Linkify.addLinks since you used Html.fromHtml, but I can't totally remember).
Linkify.addLinks
Html.fromHtml