问题描述
- 是否有安卓 textColor 标准可以定义文本的颜色为白色?
-
是否有安卓textColor标准可以定义文本的颜色为白色?
我试过使用 textColorPrimary 或者textColorSecondary属性,文本都是黑色的。<Button android:textColor="?android:attr/textColorPrimary />
解决方案
使用android:textColor="@android:color/white"
解决方案二:
android:textColor="?android:attr/textColorPrimaryInverse"
解决方案三:
android:textColor="#ffffffff"
或者 ssummeraw 的答案android:textColor="@android:color/white"
。
时间: 2025-01-20 23:39:30