Android/Intent
-
[Intent] 설정 앱 관련 인텐트 Activity Action 몇가지Android/Intent 2021. 10. 22. 00:04
권한 관련 앱 세부정보 액티비티로 보내는 것을 공부하다 몇가지 대충 써봤다. android.provider.Settings 클래스 https://developer.android.com/reference/android/provider/Setting Activity Action관련 상수( 액션마다 수행할 수 없는 컴포넌트(액티비티)가 있을 수 있음 ) ACTION_APPLICATION_SETTINGS ( 설정-> 어플리케이션(해당) ) 인텐트 설정 필요없음 설정-> 애플리케이션설정(해당) ACTION_APPLICATION_DETAILS_SETTINGS ( 설정-> 어플리케이션 -> 특정 어플리케이션 선택(해당) ) Input- 인텐트 data uri를 "package:com.패키지명"으로 설정 overrid..