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).
aboutL1.setLinksClickable(true);
in XML should be
<TextView
android:id="@+id/aboutL2"
android:autoLink="web"
android:linksClickable="true"
/>