Smart Device59 setRetainInstance setRetainInstance(false) 일때 회전 시킨 경우 -객체 새로 생성됨onCreateonCreateViewonActivityCreated호출됨 setRetainInstance(true) 일때 회전 시킨 경우- 객체 유지함, 따라서 모든 필드값 유지됨onCreateViewonActivityCreated 호출됨- view는 그래도 새로 생성됨 2014. 5. 10. PendingIntent PendingIntent는 특정 Component(Activity / Service 등)가 Intent를 생성한 후, 해당 Intent를 바로 사용하는 대신, 나 대신 다른 Component가 해당 Intent를 사용 할 수 있도록 할 때 사용하는 클래스입니다. Service를 이용한 예제 int POLL_INTERVAL = 1000 * 15; //15초 Intent i = new Intent(context, PollService.class); PendingIntent pi = PendingIntent.getService(context, 0, i, 0);AlarmManager alarmManager =(AlarmManager)context.getSystemService(Context.ALARM_SERVI.. 2014. 5. 8. 문자 입력기 IME 보이기 / 감추기 - 보이기EdidText editor = (EditText)findViewById(R.id.myEdit);InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);//only will trigger it if no physical keyboard is openmgr.showSoftInput(editor, InputMethodManager.SHOW_IMPLICIT); - 감추기EdidText editor = (EditText)findViewById(R.id.myEdit);InputMethodManager mgr = (InputMethodManager)getSystemService(Context.INP.. 2014. 5. 8. 이전 1 ··· 12 13 14 15 다음