欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中如何在textView实现富文本

程序员文章站 2022-06-24 12:00:52
怎么在textView中实现类似这样的文本??要求可以点击跳转。代码如下:xml中:

怎么在textView中实现类似这样的文本??要求可以点击跳转。
Android中如何在textView实现富文本

代码如下:
xml中:

<TextView
        android:id="@+id/tv_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.37" />

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

        android:autoLink="all"
        android:text="TextView"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

在java文件中:

  TextView tv_one=findViewById(R.id.tv_one);//设置两个框体可视化
        TextView tv_two=findViewById(R.id.tv_two);

        String text1="<font color='red'>hahhaha</font>";//设置文本的格式
        text1+="<a href='http://www.baidu.com'>百度</a><br/>";//对text1添加一个“百度”的超链接
        tv_one.setText(Html.fromHtml(text1));//将text1利用Html.fromHtml()的方法将其转换
        tv_one.setMovementMethod(LinkMovementMethod.getInstance());//为text1添加点击动作

        String text2="我的网站:http://www.baidu.com             "   ;
        text2+="我的电话:13213213213";
        tv_two.setMovementMethod(LinkMovementMethod.getInstance());
        tv_two.setText(text2);

本文地址:https://blog.csdn.net/weixin_44980441/article/details/110530506

相关标签: 安卓