0

我必须开发一个 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"

       />

在安卓代码中:

 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 可点击......

4

0 回答 0