示例#1
0
 public static Resources getResources() {
   return BaseApplication.getApplication().getResources();
 }
示例#2
0
 public static Context getContext() {
   return BaseApplication.getApplication();
 }
示例#3
0
 public static Thread getMainThread() {
   return BaseApplication.getMainThread();
 }
示例#4
0
 public static long getMainThreadId() {
   return BaseApplication.getMainThreadId();
 }
示例#5
0
 /** 获取主线程的handler */
 public static Handler getHandler() {
   return BaseApplication.getMainThreadHandler();
 }