Java tutorial
//package com.java2s; //License from project: Apache License import android.content.ActivityNotFoundException; import android.content.Context; import android.content.Intent; import android.provider.Settings; public class Main { public static void settings(Context context) { if (context == null) return; try { context.startActivity(new Intent(Settings.ACTION_SETTINGS)); } catch (ActivityNotFoundException e) { } catch (Exception e) { } } }