Beispiel #1
0
 /** 打开设置 */
 public static void openSetting(Activity activity) {
   try {
     if (UiUtil.shouldThrottle()) {
       return;
     }
     Intent intent = new Intent(Settings.ACTION_SETTINGS);
     activity.startActivity(intent);
   } catch (Exception e) {
     ErrorUtils.onException(e);
   }
 }