コード例 #1
0
ファイル: UIUtils.java プロジェクト: 913294137/GooglePlay
 public static Resources getResources() {
   return BaseApplication.getApplication().getResources();
 }
コード例 #2
0
ファイル: UIUtils.java プロジェクト: 913294137/GooglePlay
 public static Context getContext() {
   return BaseApplication.getApplication();
 }
コード例 #3
0
ファイル: UIUtils.java プロジェクト: 913294137/GooglePlay
 public static Thread getMainThread() {
   return BaseApplication.getMainThread();
 }
コード例 #4
0
ファイル: UIUtils.java プロジェクト: 913294137/GooglePlay
 public static long getMainThreadId() {
   return BaseApplication.getMainThreadId();
 }
コード例 #5
0
ファイル: UIUtils.java プロジェクト: 913294137/GooglePlay
 /** 获取主线程的handler */
 public static Handler getHandler() {
   return BaseApplication.getMainThreadHandler();
 }