有没有办法以编程方式使用kotlin更改片段中的文本颜色?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有没有办法以编程方式使用kotlin更改片段中的文本颜色?相关的知识,希望对你有一定的参考价值。
这是示例代码,在某些情况下,我需要在文本视图中更改文本颜色。像,不同月份的文字颜色应该不同。谢谢。
FragmentOne.kt
import android.os.Bundle
import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
class FragmentOne : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_one, container, false)
}
}
fragment_one.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".FragmentOne">
<TextView
android:id="@+id/textview"
android:textAlignment="center"
android:layout_gravity="center"
android:background="#7654ad"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="me !" />
</FrameLayout>
答案
您可以在onCreateView方法中尝试吗?>
var view = inflater.inflate(R.layout.fragment1, container, false);
var textView : TextView = view?.findViewById(R.id.textview) as TextView
//your condition,then set the color. Use if or when
textView.setTextColor(Color.RED)
以上是关于有没有办法以编程方式使用kotlin更改片段中的文本颜色?的主要内容,如果未能解决你的问题,请参考以下文章