我做了一个有一些文字的活动。我做了一个可点击的链接,TextView
但它工作正常(链接可见,带下划线)。
但是当我单击链接时,它会显示Unfortunately app has stopped responding
这是我的代码。
TextView
代码:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/home"
android:text="@string/google" />
Java
代码(在)protected void onCreate(Bundle savedInstanceState)
:
TextView txt= (TextView) findViewById(R.id.home); //txt is object of TextView
txt.setMovementMethod(LinkMovementMethod.getInstance());
string.xml
代码:
<string name="google">
<a href="www.google.com">Home page</a>
</string>
这是我的应用程序显示的,
现在,如果我单击主页链接,错误消息会显示Unfortunately app has stopped not responding appears
我应该怎么做?
请帮忙!