1.XML资源文件
在 res/values/colors.xml 中定义颜色资源:
<color name="my_color">#FFC107</color>
在布局文件中使用:
android:background="@color/my_color"
在代码中使用:
val color: Int = ContextCompat.getColor(this, R.color.my_color)
2.直接在代码中设置
使用 Color 类的静态方法:
import android.graphics.Colorval redColor = Color.RED
val customColor = Color.rgb(255, 165, 0) // 使用RGB值
val argbColor = Color.argb(255, 255, 165, 0) // 使用ARGB值
3.使用 ColorDrawable
在代码中创建 ColorDrawable 并使用:
import android.graphics.drawable.ColorDrawableval drawable = ColorDrawable(Color.parseColor("#FFC107"))
binding.textView.setTextColor(drawable.color)
4.颜色状态列表资源 (Color State List)
1).创建 Color State List 文件
在 res/color 目录下创建一个 XML 文件(例如 my_color_state_list.xml),用于定义颜色状态列表。
注意:先自己创建一个color目录,<selector> XML 文件应该位于 "animator"、"drawable" 或 "color" 目录中,而不是 "values" 目录中。
2).在 Color State List 文件中定义颜色状态项
在 XML 文件中,使用 <selector>元素作为根元素,然后定义不同状态下的颜色项。每个颜色项使用 <item>元素,并指定相应的状态和颜色值。
<selector xmlns:android="http://schemas.android.com/apk/res/android"><item android:state_pressed="true" android:color="@color/colorPressed" /><item android:state_selected="true" android:color="@color/colorSelected" /><item android:state_enabled="false" android:color="@color/colorDisabled" /><item android:color="@color/colorDefault" />
</selector>
3).定义颜色资源
在 res/values/colors.xml 文件中定义各个颜色值(例如 colorPressed、colorSelected 等),以便在 Color State List 文件中引用。
定义四个颜色,按下时的颜色(`colorPressed`)、选中时的颜色(`colorSelected`)、禁用时的颜色(`colorDisabled`)和默认的颜色(`colorDefault`)。
<resources><color name="colorPressed">#FF0000</color><color name="colorSelected">#00FF00</color><color name="colorDisabled">#808080</color><color name="colorDefault">#000000</color>
</resources>
4).在布局文件中应用 Color State List
在布局文件中使用:
<TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Hello, World!"android:textColor="@color/my_color_state_list" />
在代码中使用:
val colorStateList = ContextCompat.getColorStateList(this, R.color.my_color_state_list) binding.textView.setTextColor(colorStateList)
5.属性 (Attributes) 引用
使用主题中定义的颜色属性:
<?xml version="1.0" encoding="utf-8"?>
<resources><style name="Theme.GATestDemol" parent="Theme.AppCompat.Light.NoActionBar" ><!-- 主题颜色 --><item name="colorPrimary">@color/colorPrimary</item><!-- 其他主题属性 --></style>
</resources>
并在颜色资源文件(通常是`res/values/colors.xml`)中定义colorPrimary
<resources><color name="colorPrimary">#3F51B5</color><!-- 其他颜色 -->
</resources>
在布局文件中使用:
<TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Hello, World!"android:textColor="?attr/colorPrimary" />
在代码中使用:
import android.util.TypedValuevar color1 = androidx.appcompat.R.attr.colorPrimary
var color2 = com.google.android.material.R.attr.colorPrimary
var color3 = androidx.constraintlayout.widget.R.attr.colorPrimaryval typedValue = TypedValue()
this.theme.resolveAttribute(color2, typedValue, true)
val colorPrimary = typedValue.data
binding.textView.setTextColor(colorPrimary)
6.ResourcesCompat
使用 ResourcesCompat 获取颜色:
import androidx.core.content.res.ResourcesCompatval color = ResourcesCompat.getColor(resources, R.color.my_color, null)
binding.textView.setTextColor(color)
7.ValueAnimator
对颜色进行动画处理:
import android.animation.ValueAnimator
import android.view.animation.AccelerateDecelerateInterpolator val colorAnimator = ValueAnimator.ofArgb(Color.RED, Color.BLUE)
colorAnimator.duration = 5000 // 设置动画持续时间(单位:毫秒)
colorAnimator.interpolator = AccelerateDecelerateInterpolator() // 设置插值器
colorAnimator.repeatMode = ValueAnimator.REVERSE // 设置重复模式
colorAnimator.addUpdateListener { animator ->val animatedColor = animator.animatedValue as Int// 使用 animatedColorbinding.textView14.setTextColor(animatedColor)
}
colorAnimator.start()
8.使用 ColorMatrix 和 ColorFilter
ColorMatrix和ColorFilter是用于图形处理和色彩调整的类。它们可以用于修改位图、绘制画布或应用于图像视图等场景。
1).创建 ColorMatrix 对象
使用 ColorMatrix 类的构造函数或静态方法创建一个 ColorMatrix 对象。
val colorMatrix = ColorMatrix()
2).修改 ColorMatrix
通过调用 ColorMatrix 对象的方法,可以修改矩阵中的元素,以实现不同的图像处理效果。
调整亮度:
val brightness = 1.2f // 亮度增加 20%
val matrix = floatArrayOf(brightness, 0f, 0f, 0f, 0f,0f, brightness, 0f, 0f, 0f,0f, 0f, brightness, 0f, 0f,0f, 0f, 0f, 1f, 0f
)
colorMatrix.set(matrix)
调整对比度:
val contrast = 1.5f // 对比度增加 50%
val matrix = floatArrayOf(contrast, 0f, 0f, 0f, 0f,0f, contrast, 0f, 0f, 0f,0f, 0f, contrast, 0f, 0f,0f, 0f, 0f, 1f, 0f
)
colorMatrix.set(matrix)
颜色转换:
val matrix = floatArrayOf(1f, 0f, 0f, 0f, 0f, // 红色通道0f, 0f, 0f, 0f, 0f, // 绿色通道0f, 0f, 0f, 0f, 0f, // 蓝色通道0f, 0f, 0f, 1f, 0f // 透明度通道
)
colorMatrix.set(matrix)
3).创建 ColorFilter
使用 ColorMatrixColorFilter 类创建一个 ColorFilter 对象,并将 ColorMatrix 对象传递给它。
val colorFilter = ColorMatrixColorFilter(colorMatrix)
4).应用 ColorFilter
将 ColorFilter 应用于目标视图或绘图画布。
对 ImageView 应用 ColorFilter:
val colorMatrix = ColorMatrix().apply { setSaturation(0.5f) }
val filter = ColorMatrixColorFilter(colorMatrix)
binding.imageView.colorFilter = filter
val colorMatrix = ColorMatrix()
val contrast = 1.5f // 对比度增加 50%
val matrix = floatArrayOf(contrast, 0f, 0f, 0f, 0f,0f, contrast, 0f, 0f, 0f,0f, 0f, contrast, 0f, 0f,0f, 0f, 0f, 1f, 0f
)
colorMatrix.set(matrix)
val colorFilter = ColorMatrixColorFilter(colorMatrix)
binding.imageView.colorFilter = colorFilter
在绘图画布上应用 ColorFilter:
canvas?.drawBitmap(bitmap, 0f, 0f, Paint().apply {colorFilter = colorFilter
})