本文整理汇总了Java中android.content.Context.getColorStateList方法的典型用法代码示例。如果您正苦于以下问题:Java Context.getColorStateList方法的具体用法?Java Context.getColorStateList怎么用?Java Context.getColorStateList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.content.Context
的用法示例。
在下文中一共展示了Context.getColorStateList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getActionTextColorStateList
import android.content.Context; //导入方法依赖的package包/类
public static ColorStateList getActionTextColorStateList(Context context, @ColorRes int colorId) {
final TypedValue value = new TypedValue();
context.getResources().getValue(colorId, value, true);
if (value.type >= TypedValue.TYPE_FIRST_COLOR_INT && value.type <= TypedValue.TYPE_LAST_COLOR_INT) {
return getActionTextStateList(context, value.data);
} else {
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.LOLLIPOP_MR1) {
//noinspection deprecation
return context.getResources().getColorStateList(colorId);
} else {
return context.getColorStateList(colorId);
}
}
}
示例2: getColorStateList
import android.content.Context; //导入方法依赖的package包/类
public static ColorStateList getColorStateList(Context context, int id) {
return context.getColorStateList(id);
}