Develop
2016.11.28 11:49
[android] 버전 별 앱 알림 설정으로 이동하는 방법
조회 수 6043 댓글 0
첨부 '1' |
|
---|
# 내가 썼던 방법
if (android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.KITKAT) { Intent intent = new Intent(); intent.setAction("android.settings.APP_NOTIFICATION_SETTINGS"); intent.addCategory(Intent.CATEGORY_DEFAULT); //intent.setData(Uri.parse("package:" + getPackageName())); intent.putExtra("app_package", getPackageName()); intent.putExtra("app_uid", getApplicationInfo().uid); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); }else{ String packageName = "com.ncsoft.nccomix"; String SCHEME = "package"; String APP_PKG_NAME_21 = "com.android.settings.ApplicationPkgName"; String APP_PKG_NAME_22 = "pkg"; String APP_DETAILS_PACKAGE_NAME = "com.android.settings"; String APP_DETAILS_CLASS_NAME = "com.android.settings.InstalledAppDetails"; Intent intent = new Intent(); final int apiLevel = Build.VERSION.SDK_INT; if (apiLevel >= 9) { // above 2.3 intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); Uri uri = Uri.fromParts(SCHEME, packageName, null); intent.setData(uri); } else { // below 2.3 final String appPkgName = (apiLevel == 8 ? APP_PKG_NAME_22 : APP_PKG_NAME_21); intent.setAction(Intent.ACTION_VIEW); intent.setClassName(APP_DETAILS_PACKAGE_NAME, APP_DETAILS_CLASS_NAME); intent.putExtra(appPkgName, packageName); } startActivity(intent); }
# 참고할 방법 (해보지는 않음 ㅋㅋ)
packageName = "your.package.name.here" try { //Open the specific App Info page: Intent intent = new Intent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS); intent.setData(Uri.parse("package:" + packageName)); startActivity(intent); } catch ( ActivityNotFoundException e ) { //e.printStackTrace(); //Open the generic Apps page: Intent intent = new Intent(android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS); startActivity(intent); }
[참고] http://www.makeuseof.com/tag/stop-annoying-notifications-android/
[참고] http://stackoverflow.com/questions/4421527/how-can-i-start-android-application-info-screen-programmatically
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
1105 | Develop |
[lego] 세그웨이 이것만 볼것.. ㅎㅎ
![]() |
hooni | 2013.04.23 | 36851 |
1104 | System/OS | [sql] 조회구문(select)에서 중복 데이터를 한 번만 출력 (distinct) 1 | hooni | 2013.04.23 | 35652 |
1103 | System/OS | [mac] 맥에서 슬립(잠자기) 모드 진입을 막는 방법~ | hooni | 2013.10.10 | 35289 |
1102 | Develop |
베지어 곡선(Bézier curve) 알고리즘(spline 곡선)
3 ![]() |
hooni | 2013.04.23 | 35266 |
1101 | Develop |
[c++] 웹폼(webform)전송과 http 파일 업로드 샘플
![]() |
hooni | 2013.04.23 | 34994 |
1100 | System/OS | Mac OS X - Apache+PHP+MySQL 환경 서버 | hooni | 2013.04.25 | 34816 |
1099 | Develop | [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기 | hooni | 2013.11.04 | 34798 |
1098 | Develop |
[c] C로 구현한 CGI - 방명록
![]() |
hooni | 2003.04.23 | 34481 |
1097 | Develop | [js] jQuery 코드 작성시 편리한 HTML 템플릿 | hooni | 2013.12.17 | 34236 |
1096 | Develop | [android] 디바이스(시뮬레이터) hosts 파일 수정하기 | hooni | 2013.04.23 | 33720 |
1095 | Develop |
[c] C로 구현한 CGI - 달력과 날짜계산기
![]() |
hooni | 2003.04.23 | 33603 |
1094 | Develop | [ios] 디렉토리 하하하.. | hooni | 2013.04.23 | 33518 |