1

如何在点击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" />
4

1 回答 1

1

嗨,我通过在 java 类中添加一小段代码以及布局 xml 文件中的少量更改得到了解决方案

instruction = (TextView) findViewById(R.id.example);

    instruction.setText(Html
            .fromHtml("<b> To open google console </b> "
                    + "<a href=\"https://code.google.com/apis/console\">Click here</a> "));
    instruction.setMovementMethod(LinkMovementMethod.getInstance());

布局测试.xml

 <TextView
        android:id="@+id/example"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
于 2013-07-23T09:58:26.650 回答