继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

项目框架工具类(UIUtils)

6号小码猿
关注TA
已关注
手记 6
粉丝 1
获赞 33
/**
 * 工具类, 专门用来获取UI相关需要的参数
 * 
 * @author Kevin
 * 
 */
public class UIUtils {

public static Context getContext() {
    return BaseApplication.getContext();//BaseApplication为我们自定义的Application,里面初始化了一些静态全局变量!
}

public static int getMainThreadId() {
    return BaseApplication.getMainThreadId();
}

public static Handler getHandler() {
    return BaseApplication.getHandler();
}

/**
 * 根据id获取字符串
 */
public static String getString(int id) {
    return getContext().getResources().getString(id);
}

/**
 * 根据id获取图片
 */
public static Drawable getDrawable(int id) {
    return getContext().getResources().getDrawable(id);
}

/**
 * 根据id获取颜色值
 */
public static int getColor(int id) {
    return getContext().getResources().getColor(id);
}

/**
 * 获取颜色状态集合
 */
public static ColorStateList getColorStateList(int id) {
    return getContext().getResources().getColorStateList(id);
}

/**
 * 根据id获取尺寸
 */
public static int getDimen(int id) {
    return getContext().getResources().getDimensionPixelSize(id);
}

/**
 * 根据id获取字符串数组
 */
public static String[] getStringArray(int id) {
    return getContext().getResources().getStringArray(id);
}

/**
 * dp转px
 */
public static int dip2px(float dp) {
    float density = getContext().getResources().getDisplayMetrics().density;
    return (int) (density * dp + 0.5);
}

/**
 * px转dp
 */
public static float px2dip(float px) {
    float density = getContext().getResources().getDisplayMetrics().density;
    return px / density;
}

/**
 * 加载布局文件
 */
public static View inflate(int layoutId) {
    return View.inflate(getContext(), layoutId, null);
}

/**
 * 判断当前是否运行在主线程
 * 
 * @return
 */
public static boolean isRunOnUiThread() {
    return getMainThreadId() == android.os.Process.myTid();
}

/**
 * 保证当前的操作运行在UI主线程
 * 
 * @param runnable
 */
public static void runOnUiThread(Runnable runnable) {    
    if (isRunOnUiThread()) {
        runnable.run();
        } else {
            getHandler().post(runnable);
        }
    }
}
打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP