如何在点击android中的超链接文本视图时打开谷歌主页我正在尝试使用以下代码但点击超链接它只是变成普通文本如何解决它
这是代码:
MainActivity.java(在 onCreate() 中)
instruction = (TextView) findViewById(R.id.example);
instruction.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
instruction.setText(Html.fromHtml(getString(R.string.Google_Instructions)));
Linkify.addLinks(instruction, Linkify.ALL);
instruction.setMovementMethod(LinkMovementMethod.getInstance());
}
});
字符串.xml
<string name="Google_Instructions">opens <a href="https://www.google.co.in">Google</a> page </string>
布局测试.xml
<TextView
android:id="@+id/example"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10sp"
android:clickable="true"
android:text="@string/Google_Instructions"
android:autoLink="web"
android:textSize="16sp" />