本文整理匯總了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);
}