您的位置:首页 > 其它

安卓获取本地颜色和图片的方法

2018-03-26 13:52 120 查看
android获取颜色和图片的方法,在项目中写成工具类的方法以便及时调用

因为版本的原因,有些方法是过期的方法,要对版本进行区分

public class ColorImageUtils {
/**
* 获取本地资源颜色
*
* @param context
* @param resId
* @return
*/
public static int getColor(Context context, @ColorRes int resId) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { // 23
return ContextCompat.getColor(context, resId);
} else {
return context.getResources().getColor(resId);
}
}

/**
* 获取 drawable
*
* @param context
* @param resId
* @return
*/
public static Drawable getDrawable(Context context, @DrawableRes int resId) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // 21
return context.getResources().getDrawable(resId, context.getTheme());
} else {
return context.getResources().getDrawable(resId);
}
}
}

在该方法中,参数里的@ColorRes 和@DrawableRes是可以保证id能在资源文件里自动寻找相关的资源.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: