public static void runOnUiThread(Runnable runnable) { // TODO Auto-generated method stub if (android.os.Process.myTid() == BaseApplication.getMainTid()) { runnable.run(); } else { BaseApplication.getHandler().post(runnable); } }
// 获取上下文 public static Context getContext() { return BaseApplication.getApplication(); }
public static Resources getResource() { return BaseApplication.getApplication().getResources(); }