ResUtils

作者: Smart_Arvin | 来源:发表于2016-12-14 22:00 被阅读49次

    直接上代码

    package com.xxx.utils;
    
    import com.xxx.base.SczwApplication;
    import android.content.Context;
    import android.content.res.Resources;
    import android.graphics.drawable.Drawable;
    
    /**
     * @Date 2016-5-15 下午2:28:32
     * @Author Arvin
     * @Description 工具类:获取资源文件
     */ 
    public class ResUtils {
        
        public static Context getContext() {
            return SczwApplication.getContext();
        }
    
        /**
         * 得到Resource对象
         */
        public static Resources getResources() {
            return getContext().getResources();
        }
    
        /**
         * 得到String.xml中定义的字符信息
         */
        public static String getString(int resId) {
            return getResources().getString(resId);
        }
    
        /**
         * 得到String.xml中定义的字符信息,带占位符
         */
        public static String getString(int resId, Object... formatArgs) {
            return getResources().getString(resId, formatArgs);
        }
    
        /**
         * 得到String.xml中定义的字符数组信息
         */
        public static String[] getStrings(int resId) {
            return getResources().getStringArray(resId);
        }
    
        /**
         * 得到color.xml中定义的颜色信息
         */
        public static int getColor(int resId) {
            return getResources().getColor(resId);
        }
    
        /**
         * 得到Drawable资源
         */
        public static Drawable getDrawable(int resId) {
            return getResources().getDrawable(resId);
        }
    
    }
    

    相关文章

      网友评论

          本文标题:ResUtils

          本文链接:https://www.haomeiwen.com/subject/yalwmttx.html