startActivity(new Intent(Settings.ACTION_SETTINGS));
Above code is used to call a setting through Intent
i need to map that intent in Combination of key..
for example
i need to call settings intent by pressing a+s+d
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Within one of your own activities, override methods like
onKeyDown(), examine theKeyEventto see if it matches, and start the activity if it does.If you are trying to do this on a global basis, that is not possible from the Android SDK.