textview可以在android html.fromHtml中点击

时间:2013-04-23 09:24:51

标签: android textview

我必须开发一个Android示例。

这里我必须传递html字符串值并在textview上设置值。

我使用了以下代码:

<TextView
        android:id="@+id/title1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"

        android:text="Title"

        android:layout_below="@+id/youtube_view"

       />

在android代码中:

 String fullcontent = in.getStringExtra("FullContent");
       full_content = fullcontent.substring(1);

       lblContent = (TextView) findViewById(R.id.title1);

    lblContent.setText(Html.fromHtml(full_content),TextView.BufferType.SPANNABLE);

    lblContent.setMovementMethod(LinkMovementMethod.getInstance());

在这里我必须运行应用程序,这意味着textview是可点击的......我如何禁用textview clickable ...

0 个答案:

没有答案