과거.....
-
-
리소스 언어파일 임의로 가져오기과거...../개발일지 2012. 9. 4. 16:26
Locale[] localeA = Locale.getAvailableLocales(); boolean haveLang = false; for (int i = 0; i < localeA.length; i++) { if (localeA[i].getCountry().equals(mIsoCode[position])) { haveLang = true; mLangCode = localeA[i].getLanguage() + "_" + mIsoCode[position]; mEmptyTextView.setText(getEmptyTextRes(localeA[i])); break; } } 함수 부분: private String getEmptyTextRes(Locale locale){ Resources standardReso..
-
adb로 keyevent테스트 할시 유용과거...../개발일지 2012. 8. 27. 16:13
You can use key codes directly like adb shell input keyevent 7 # for key '0' adb shell input keyevent 8 # for key '1' adb shell input keyevent 29 # for key 'A' adb shell input keyevent 54 # for key 'B' we can also send string as a text, like adb shell input text "ANDROID" The below text is the whole list of all keyevent names with their respective codes numbers... 0 --> "KEYCODE_UNKNOWN" 1 --> "..
-
activity 순서 재조정,gps과거...../개발일지 2012. 8. 22. 20:39
금일 작업 activity 순서 재조정 intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT); gps관련(전력을 낮추지 말자) Criteria criteria = new Criteria(); criteria.setAccuracy(Criteria.NO_REQUIREMENT); criteria.setAltitudeRequired(false); criteria.setBearingRequired(false); criteria.setCostAllowed(true); criteria.setPowerRequirement(Criteria.NO_REQUIREMENT);
-
8-19과거...../개발일지 2012. 8. 19. 21:16
이코드 찾느라 예전에 한참 걸렸다...~~~ ㅜㅠ자동적으로 사이즈를 조정해준다 (팝업이나 ~~등등에서 edittext사용시)getWindow().setSoftInputMode(android.view.WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE); 재생중인음악을 pause되있을때 다시 실행하라는 인텐트Intent i = new Intent("com.android.music.musicservicecommand"); i.putExtra("command", "togglepause"); mContext.sendBroadcast(i); 재생중인 음악을 pause시키라는 인텐트 Intent i = new Intent( "com.android.music.musicserv..