導到某應用程式的設定頁面 === ```java= String schema = "package"; String packagename = "com.xxxx.xxxx"; Intent intent = new Intent( Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.fromParts(schema, packagename, null) ); ``` ## Ref. [Go to My app's App Permission screen](https://stackoverflow.com/a/66048500) ###### tags: `系統環境`