作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
sdk更新到Android 5.0后方法消失了TextView.getTextColor(Context context, TypedArray typedArray, int defStyle)
.
我将此方法用于我的自定义 TextView(来自 xml 的 int colorId
定义)。
那么如何确定int color id
来自 xml?
最佳答案
下面是获取 TextView 颜色的示例代码:
TextView tv = (TextView) findViewById(R.id.yourComponentId);
int tv_color = tv.getTextColors().getDefaultColor();
或者您也可以像这样获取普通文本的颜色:
TextView tv = (TextView) findViewById(R.id.yourComponentId);
int tv_color = tv.getCurrentTextColor();
在使用第一个示例的情况下,您还可以使用以下方法获取各种状态的颜色
TextView tv = (TextView) findViewById(R.id.yourComponentId);
ColorStateList colorStateList = tv.getTextColors();
int tv_color colorStateList.getColorForState(states, failColor);
希望这对您有所帮助。
关于java - 在新的 Android 5.0 中,方法 TextView.getTextColor(Context context, TypedArray typedArray, int defStyle) 在哪里消失了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26503274/
本文整理了Java中com.github.mikephil.charting.components.YAxis.getTextColor()方法的一些代码示例,展示了YAxis.getTextColo
sdk更新到Android 5.0后方法消失了TextView.getTextColor(Context context, TypedArray typedArray, int defStyle) .
我是一名优秀的程序员,十分优秀!