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
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
819 | Develop | [c++] p.47 연습문제 3번 | hooni | 2003.04.23 | 11346 |
818 | Develop | [c++] p.58 연습문제 2번 | hooni | 2003.04.23 | 17420 |
817 | Develop | [c++] p.118 확인학습 5번 | hooni | 2003.04.23 | 11972 |
816 | Develop |
[c] 프로그래밍 ppt, 스킬업 (비트 수업자료)
![]() |
hooni | 2003.04.23 | 9455 |
815 | Develop | [css] 스크롤바 안생기게 | hooni | 2003.04.23 | 11530 |
814 | Develop | [c] 민수형 libipq 샘플 소스 ㅋㅋ | hooni | 2003.04.23 | 15105 |
813 | Develop |
[php] 니우쪽지다.. 받아라~ ^^
![]() |
hooni | 2003.04.23 | 11147 |
812 | Develop |
[c++]현승이가 보내준 동영상 암호화 자료.. 볼것..
![]() |
hooni | 2003.04.23 | 11050 |
811 | Develop |
[c++]현승이가 보내준 암호화 모듈 AES라인델..
![]() |
hooni | 2003.04.23 | 11550 |
810 | Develop | [php] 배열 관련 함수 설명 ㅎㅎ | hooni | 2003.04.23 | 12749 |
809 | Develop | [css] 화면 스크롤 제어 ㅋㅋ | hooni | 2003.04.23 | 9691 |
808 | Develop | [js] 자바스크립트 이벤트 핸들.. | hooni | 2003.04.23 | 9164 |