Android
-
JSONObjectAndroid 2021. 10. 26. 19:40
사용 방법 예제 try { JSONObject jo = new JSONObject(response); String id = jo.getString("id"); } catch (JSONException e) { //... } JSONObject생성은 try catch문 안에 사용해야 한다. Volley에 적용한 Ex Response.Listener rplsn = new Response.Listener() { @Override public void onResponse(String response) { ((TextView)findViewById(R.id.textview1)).setText(response.toString()); try { JSONObject jo = new JSONObject(response)..
-
Android App 이름Android 2021. 3. 9. 12:05
패키지 이름과 화면 표시 이름 사용자 휴대폰 도우미 com.microsoft.appmanager 게임 부스터 com.samsung.android.game.gametools 구독 갤린더 com.samsung.android.opencalendar 기본 인쇄 서비스 다른 기기에서도 전화 문자하기 com.samsung.android.mdecservice 데코픽 com.samsung.android.livestickers 디지털 웰빙 com.samsung.android.forest 라디오 com.sec.android.app.fm 링크 공유 com.samsung.android.app.simplesharing 배경음악 선택 com.sec.android.app.ve.vebgm 배경화면 com.samsung.android..
-
Android logcat Log 종류Android 2021. 3. 8. 21:32
Log 클래스를 사용하여 logcat에 표시되는 로그 항목 나열. Log.v(String, String) (상세) Log.d(String, String) (디버그) Log.i(String, String) (정보) Log.w(String, String) (경고) Log.e(String, String) (오류) Java 코드 Log.i("MyActivity", "MyClass.getView() — get item number " + position); logcat 출력. I/MyActivity( 1557): MyClass.getView() — get item number 1 우선순위 문자값 V: Verbose(가장 낮은 우선순위) D: Debug I: Info W: Warning E: Error F: Fat..
-
Android adb logcat 명령어Android 2021. 3. 8. 21:11
adb logcat 사용법 : logcat [옵션] [필터 사양] 일반 옵션: -b, --buffer = 대체 링 버퍼 요청 : 기본 시스템 라디오 이벤트 충돌 기본값 모두 또한 userdebug 및 eng 빌드를위한 '커널' 모래 장치 소유자 설치를위한 '보안'. 여러 -b 매개 변수 또는 쉼표로 구분 된 목록 버퍼는 허용됩니다. 버퍼가 인터리브됩니다. 기본값 -b main, system, crash, kernel. -L, --last pstore에서 마지막 재부팅 이전의 로그를 덤프합니다. -c, --clear 전체 로그를 지우고 (플러시) 종료합니다. -f가 지정되면 지정된 파일을 지우고 i ts 관련 회전 대신 로그 파일. -L이 지정되면 대신 pstore 로그를 지 웁니다. -d 로그를 덤프 한..
-
안드로이드 알림 로그 (Notification History Log)Android 2021. 1. 11. 17:10
Android Notification History Log 알림 로그는 Android 4.3 Jellybean에서 처음 도입되었다. Android Pie를 통해 Android Lollipop에서 계속 액세스 할 수 있다. 삭제 된 알림도 볼 수 있다. 삭제된 알림을 검색하려면 먼저 개발자 옵션을 활성화해야한다. 개발자 옵션을 잠금 해제하려면 휴대폰 설정에서 휴대폰 정보 로 이동 한 다음 빌드 번호를 여러 번 탭한다. 어떤 앱에서 발생시킨 진동, 토스트, 화면 켜짐 등을 찾을 수 있다. 알림 기록을 보여주는 앱 Notification History Log Nice Catch
-
Android - Sound(Wav, Mp3 등) 파일 재생Android 2020. 7. 31. 18:19
안드로이드 버전에 상관없이 재생되는 코드 SoundPool mSp = null; int mAlertid = 0; public void sndinit() { if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { AudioAttributes attributes = new AudioAttributes.Builder() .setUsage(AudioAttributes.USAGE_GAME) .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION) .build(); mSp = new SoundPool.Builder() .setAudioAttributes(attributes) ..