i am working on a simple home launcher, but a cant find a way to access global android setting like wireless,application etc, i've alredy read http://developer.android.com/reference/android/provider/Settings.Sy开发者_JAVA技巧stem.html but couldnt find the answer,please someone tell me how to do that, sorry for my bad english
This should do it:
startActivity(new Intent(android.provider.Settings.ACTION_SETTINGS));
Two ways:
- You read android's src code and you check
which
intent is sent. - Go to the setting menu you are looking and check in
Logcat
which intent is used.
精彩评论