Categories: Android

[안드로이드] 시스템 설정 > 애플리케이션 페이지 열기

 안드로이드 시스템 환경 설정 페이지의 애플리케이션 페이지를 열고 싶을 경우가 있을 수 있습니다. Intent 를 생성할 때 아래 값을 인자로 주고 startActivity 해주면 됩니다.

android.provider.Settings.ACTION_APPLICATION_SETTINGS

 테스트 결과 안드로이드 4.0 에서는 앱 리스트가 있는 화면이 바로 나오고, 안드로이드 2.3 까지는 앱 리스트 화면을 보려면 사용자가 한번 더 클릭을 해줘야 하는 화면으로 이동됩니다.

 그리고 특정 앱의 상세 화면을 띄워주는 방법을 Intent 생성할 때 아래 인자를 넣으면 됩니다.  다만 이 값의 경우 안드로이드 2.3 이상 부터 작동하는 것으로 확인 됩니다.

android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS

 패키지이름을 넣어줘야 원하는 앱의 상세화면을 띄워줄 수 있을 것입니다. 그것은 Intent 의 setData 로 형식을 맞춰서 넣어주면 됩니다.

intent.setData(Uri.parse(“package:” + mPackageName);

public static final String ACTION_APPLICATION_DETAILS_SETTINGS
Since: API Level 9

Activity Action: Show screen of details about a particular application.

In some cases, a matching Activity may not exist, so ensure you safeguard against this.

Input: The Intent’s data URI specifies the application package name to be shown, with the “package” scheme. That is “package:com.my.app”.

Output: Nothing.

Constant Value: “android.settings.APPLICATION_DETAILS_SETTINGS”

http://developer.android.com/reference/android/provider/Settings.html 

dingpong

Share
Published by
dingpong

Recent Posts

LFS error at git checkout in Jenkins

Problem stdout: stderr: Downloading xxxx.a (83 MB) error: git-lfs smudge -- 'xxxx.a' died of signal…

3년 ago

플레이모빌 크리스마스 XXL 6629 산타 해외직구 구매가 배송비

https://www.playmobil.de/playmobil-xxl-weihnachtsmann/6629.html 구매가 : 48.49 유로 (플레이모빌 독일 홈페이지) 결제하는데 안되서 PayPal 로 결제하니 잘 잔행…

3년 ago

코카콜라 제로 355ml 72캔 구매가 (캔당 453원)

롯데온에서 355ml 24캔 롯데카드로 구매시 13,210원 https://www.lotteon.com/p/product/PD36294 APP으로 35,000원 이상 구매시 7,000 포인트 적립 행사…

4년 ago

경동나비엔 온수매트 EQM541-QS (퀸사이즈) 구입가

구입 매장 : 현대 홈쇼핑 (홈쇼핑 방송 중) 모바일 앱 http://www.hyundaihmall.com/front/pda/itemPtc.do?slitmCd=2114353981 최종 결제 가격 :…

4년 ago

PostMessage에 shared_ptr과 같은 스마트 포인터 넣기

PostMessage의 WPARAM 이나 LPARAM 으로 shared_ptr 와 같은 스마트 포인터 객체를 넘기고 싶은 경우가 있습니다.…

4년 ago

RC2255 – named STRINGTABLEs are not allowed

Visual Studio 에서 작업 중 이러한 컴파일 에러가 발생한 케이스가 있었습니다. 이 경우에는 .rc 파일에…

4년 ago