TextView修改部分文字顏色


Java代碼

String colorText = "這裏是<font color = \"#FF0000\">紅色</font>的,這裏是<font color = \"#03A9F4\">藍色</font>的";
TextView textView = findViewById(R.id.textView);
textView.setText(Html.fromHtml(colorText));

或Kotlin代碼

 //修改TextView部分文字顏色
val colorText = "這裏是<font color = \"#FF0000\">紅色</font>的,這裏是<font color = \"#03A9F4\">藍色</font>的"
val textView = findViewById<TextView>(R.id.textView)
textView.text = Html.fromHtml(colorText)

佈局文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        android:textSize="18dp"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

其運行效果

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章