Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Button button = (Button) findViewById(R.id.button);
- button.setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- Intent openSettings = new Intent(android.provider.Settings.ACTION_SETTINGS);
- startActivity(openSettings);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement