|
@@ -29,6 +29,7 @@ import com.artncore.wallpadapi.KnxAPI;
|
|
|
import com.artncore.wallpadapi.SdbAPI;
|
|
|
import com.artncore.wallpadapi.SmartKeyRfDoorAPI;
|
|
|
import com.artncore.wallpadapi.WallPadAPI;
|
|
|
+import com.util.LogUtil;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
@@ -281,6 +282,7 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
int getSleepTime = Settings.System.getInt(this.getContext().getContentResolver(), SCREEN_OFF_TIMEOUT);
|
|
|
Log.d(TAG, "[initInfo] getSleepTime : " + getSleepTime);
|
|
|
mSleepModeTime = (getSleepTime/1000);
|
|
|
+ if (mSleepModeTime < MIN_SLEEP_TIME) mSleepModeTime = MIN_SLEEP_TIME;
|
|
|
|
|
|
int getBrightness = Settings.System.getInt(this.getContext().getContentResolver(), "screen_brightness");
|
|
|
|
|
@@ -475,9 +477,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
|
|
|
//setting_manual_str += "ToTalPage:" + m_ToTalPage + "/";
|
|
|
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] initInfo()");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -540,9 +545,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_Popup[i] = null;
|
|
|
}
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawContentsPage(int page) 1");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
|
|
|
try {
|
|
@@ -664,8 +672,11 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
if (EmListIndex == 2) { EmListIndex = 0; }
|
|
|
|
|
|
SettingData.get(i).SetViewIdx(arrayIdx);
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
} catch (Exception ee) {
|
|
|
- ee.printStackTrace();
|
|
|
+ //ee.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, ee);
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
@@ -709,8 +720,11 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
if(EmListIndex == 2) { EmListIndex = 0; }
|
|
|
|
|
|
SettingData.get(i).SetViewIdx(arrayIdx);
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
} catch (Exception ee) {
|
|
|
- ee.printStackTrace();
|
|
|
+ //ee.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, ee);
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
@@ -828,9 +842,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_PrevPage.setButtonEventOffDisable();
|
|
|
Btn_NextPage.setButtonEventOffDisable();
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawContentsPage(int page) 2");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1060,8 +1077,11 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Log.i(TAG, "Don't BATH NON ADD ~~~~~~~");
|
|
|
}
|
|
|
}
|
|
|
- } catch(Exception e) {
|
|
|
- e.printStackTrace();
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
@@ -1082,8 +1102,11 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
else {
|
|
|
Log.w(TAG, "[mSensorLightCheckHandler] mWallPadAPI is null!!");
|
|
|
}
|
|
|
- } catch(Exception e) {
|
|
|
- e.printStackTrace();
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
else if (msg.what == 1) {
|
|
@@ -1106,8 +1129,11 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
mPhoneLightCtrUse = true;
|
|
|
}
|
|
|
}
|
|
|
- } catch(Exception ex) {
|
|
|
- ex.printStackTrace();
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception ex) {
|
|
|
+ //ex.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG,ex);
|
|
|
}
|
|
|
|
|
|
SetKind data = new SetKind(TYPE_BUTTON , ConfingSettingMainID.button.AS_CALL , 0 , TXT_AS_CALL );
|
|
@@ -1163,8 +1189,11 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
protected void onClose() {
|
|
|
try {
|
|
|
mSensorLightCheckHandler.removeMessages(0);
|
|
|
- } catch (Exception ee) {
|
|
|
- ee.printStackTrace();
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception ee) {
|
|
|
+ //ee.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, ee);
|
|
|
}
|
|
|
|
|
|
super.onClose();
|
|
@@ -1524,9 +1553,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
runWallPadReboot();
|
|
|
}
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] onPopupResult(Intent data)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1579,9 +1611,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
else {
|
|
|
Log.w(TAG, "[GetDBConfigInitValue] mWallpadStatusData is null!!");
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] GetDBConfigInitValue()");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1608,9 +1643,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
else {
|
|
|
Log.w(TAG, "[SaveConfigDB] mWallpadStatusData is null!!");
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] SaveConfigDB()");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1644,9 +1682,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
|
|
|
//Log.i(TAG, "Change : " + smartKeyRfDoorAPI.SetSensorConfig((byte)mVolumeLevel, (byte)(mVolumeLevel*2) ) );
|
|
|
//Log.i(TAG, "Setting : " + smartKeyRfDoorAPI.SetSensorConfig((byte)0xFF, (byte)0xFF) );
|
|
|
- } catch(Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] ChangeVolumeLevel(boolean Up)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
// DB Save
|
|
|
}
|
|
@@ -1666,9 +1707,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_Right[idx].setButtonFrontImage();
|
|
|
Btn_Left[idx].setButtonFrontImage();
|
|
|
}
|
|
|
- } catch(Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawVolumeLevel(int level)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1696,7 +1740,7 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
}
|
|
|
|
|
|
if (soundOn) {
|
|
|
- Sound().Play(SND.effect.TOUCH_LATCHED);
|
|
|
+// Sound().Play(SND.effect.TOUCH_LATCHED);
|
|
|
DrawCloseSensorLevel(mCloseSensorLevel);
|
|
|
|
|
|
int closeValue = 15;
|
|
@@ -1730,9 +1774,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Log.d(TAG, "[ChangeCloseSensorLevel] - db saved : " + wd.GetCloseSensorValue());
|
|
|
wd.closeDB();
|
|
|
}
|
|
|
- } catch(Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] ChangeCloseSensorLevel(boolean Up)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
private void DrawCloseSensorLevel(int level) {
|
|
@@ -1750,18 +1797,24 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_Right[idx].setButtonFrontImage();
|
|
|
Btn_Left[idx].setButtonFrontImage();
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawCloseSensorLevel(int level)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
private void DrawSensorLightCheck(byte index, boolean onoff) {
|
|
|
try {
|
|
|
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG,"[Exception] DrawSensorLightCheck(byte index, boolean onoff)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1808,9 +1861,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_Right[idx].setButtonFrontImage();
|
|
|
Btn_Left[idx].setButtonFrontImage();
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG,"[Exception] DrawLcdLevel(int level)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1838,9 +1894,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
}
|
|
|
|
|
|
DrawButtonLightLevel(mButtonLightLevel);
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG,"[Exception] ChangeButtonLightLevel(boolean Up)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1859,9 +1918,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_Right[idx].setButtonFrontImage();
|
|
|
Btn_Left[idx].setButtonFrontImage();
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG,"[Exception] DrawButtonLightLevel(int level)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1885,12 +1947,16 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
}
|
|
|
DrawSleepTime(mSleepModeTime);
|
|
|
|
|
|
- Settings.System.putInt( this.getContext().getContentResolver(), SCREEN_OFF_TIMEOUT, mSleepModeTime * 1000);
|
|
|
+ if (mSleepModeTime == 30) Settings.System.putInt( this.getContext().getContentResolver(), SCREEN_OFF_TIMEOUT, 28 * 1000); // 백라이트 off와 앱 종료가 동시에 일어나면 월패드가 비정상 종료되므로 수정 (2021.04.01 메이드인랩 김수진 선임 요청)
|
|
|
+ else Settings.System.putInt( this.getContext().getContentResolver(), SCREEN_OFF_TIMEOUT, mSleepModeTime * 1000);
|
|
|
int getSleepTime = Settings.System.getInt(this.getContext().getContentResolver(), SCREEN_OFF_TIMEOUT);
|
|
|
Log.d(TAG, "[ChangeSleepTime] getSleepTime : " + getSleepTime);
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] ChangeSleepTime(boolean Up)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1910,9 +1976,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
Btn_Right[idx].setButtonFrontImage();
|
|
|
Btn_Left[idx].setButtonFrontImage();
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawSleepTime(int Time)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1942,9 +2011,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawAlramSound(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1966,9 +2038,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawSensorLight_Share(boolean value, String selecName, String EMname)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1996,9 +2071,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawSensorLight_Couple(boolean value, String selecName, String EMname)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2026,9 +2104,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawCarAlarmSound(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2056,9 +2137,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawCallAlarmSound(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2086,9 +2170,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawBandLocAlarm(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2115,9 +2202,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setButtonEventOffEnable();
|
|
|
NotUseCheckBoxAgrray[idx].setButtonEventOffEnable();
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawEasyMode(boolean value, boolean bTouch)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2145,9 +2235,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawNoisePopupUse(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2222,9 +2315,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawPhoneLightCtrUse(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2253,9 +2349,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawARSControl(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2283,9 +2382,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
UseCheckBoxAgrray[idx].setImageResource(UseCheckBoxAgrray[idx].getDefaultImageID());
|
|
|
NotUseCheckBoxAgrray[idx].setImageResource(NotUseCheckBoxAgrray[idx].getPressedImageID());
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] DrawRemoteControl(boolean value)");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2311,9 +2413,12 @@ public class ConfigSettingMainScreen extends WpadScreen {
|
|
|
else {
|
|
|
Log.w(TAG, "[runWallPadReboot] Not Supported PlatformType [" + Version.getPlatformType() + "]");
|
|
|
}
|
|
|
- } catch (Exception e) {
|
|
|
+ } catch (RuntimeException re) {
|
|
|
+ LogUtil.errorLogInfo("", TAG, re);
|
|
|
+ } catch (Exception e) {
|
|
|
Log.e(TAG, "[Exception] runWallPadReboot()");
|
|
|
- e.printStackTrace();
|
|
|
+ //e.printStackTrace();
|
|
|
+ LogUtil.errorLogInfo("", TAG, e);
|
|
|
}
|
|
|
}
|
|
|
}
|