2016-08-11 96 views
1

在我的應用程序中,有什麼方法可以將用戶重定向到特定設置的「頁面」?我的應用程序可用作鎖屏應用程序,因此我希望能夠將用戶直接重定向到Android設置的「鎖屏」部分。 (通過按鈕或類似的東西最好)以編程方式打開特定設置頁面

+1

http://stackoverflow.com/questions/19517417/opening-android-settings-programmatically的可能的複製,請參見[android.provider.Settings意圖(HTTPS:/ /developer.android.com/reference/android/provider/Settings.html)。 – GPuschka

+0

哦,沒有閱讀完整的帖子 - 感謝隊友,正是我需要的!回答我的問題,如果你願意,我會接受你的回答:) –

回答

2

ACTION_SECURITY_SETTINGS意圖:

Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS); 
startActivity(intent); 

For complete Settings Intents

1

我設法找到一個老Stackoverflow-post from a while back正確的答案。代碼段現在看起來是這樣的:

Intent intent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD); 
startActivity(intent); 
+0

2天之前不能接受我的回答,但這是正確的! –

相關問題