gpt4 book ai didi

android - 使用 Kotlin 语言在 Android Studio 中设置文本的渐变颜色

转载 作者:行者123 更新时间:2023-12-05 00:11:06 25 4
gpt4 key购买 nike

我有一个文本,我想设置一个渐变色作为它的前景。我可以用 XML 做吗?

还是应该在 Activity 中做?我在 Android Studio 中使用 Kotlin 编程。

文件activity_main.xml

<androidx.constraintlayout.widget.ConstraintLayout xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:gravity="center"
android:text="Text Color is Gradient"
android:textColor="#000"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

文件gradient.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:angle="90"
android:centerColor="#555994"
android:endColor="#b5b6d2"
android:startColor="#555994"
android:type="linear" />

<corners
android:radius="0dp"/>

</shape>

我的 Activity 是这样的:

import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity


class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

}
}

最佳答案

为了将渐变设置为 Textview 文本颜色,您必须使用 textshader 来解析渐变颜色。您可以根据需要自定义颜色。

 val paint = textView.paint
val width = paint.measureText(textView.text.toString())
val textShader: Shader = LinearGradient(0f, 0f, width, textView.textSize, intArrayOf(
Color.parseColor("#F97C3C"),
Color.parseColor("#FDB54E"),
/*Color.parseColor("#64B678"),
Color.parseColor("#478AEA"),*/
Color.parseColor("#8446CC")
), null, Shader.TileMode.REPEAT)

textView.paint.setShader(textShader)

Image

关于android - 使用 Kotlin 语言在 Android Studio 中设置文本的渐变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60631322/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com