In my android app I have a textview, which i'm using it as a link to open website. But when click on textView
a alert pops up
the browser isn't responding.
<string name="MoneyControl"><a href="http://www.moneycontrol.com/stocksmarketsindia/"> 1. Money Control</a></string>
<TextView
android:id="@+id/moneycontrol"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/MoneyControl"
android:textSize="15dp" />
link = (TextView) findViewById(R.id.moneycontrol);
if (link !=null){
link.setMovementMethod(LinkMovementMethod.getInstance());
}