Android 中 颜色值的定义和使用

1、颜色值定义

  • 格式: #AARRGGBB
    • AA = 透明度(00 = 全透明,FF = 不透明)
    • RRGGBB = 红绿蓝颜色值(和普通6位 HEX 相同)
    • 例如: #FFFC8452 代表完全不透明的橙红色。

2、常见透明度对照表

透明度(十六进制)对应百分比示例颜色值
000%(全透明)#00FC8452
4025%#40FC8452
8050%#80FC8452
BF75%#BFFC8452
E690%#E6FC8452
FF100%(不透明)#FFFC8452

3、res/values/colors.xml 中定义

	<?xml version="1.0" encoding="utf-8"?>
	<resources>
		<color name="blue">#FF5071C7</color>
		<color name="translucent_blue">#805071C7</color>
	</resources>

4、使用方式

  • 布局文件中引用
	<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="@dimen/sp_32"
        android:textColor="@color/translucent_blue"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>
  • 代码中调用
	val resId = resources.getColor(R.color.translucent_blue, null)
	textView.setTextColor(resId)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值