I want to adjust the display options in my activity.
Intent intent = new Intent (Settings.ACTION_DISPLAY_SETTINGS);
startActivity (intent);
but I get the following exception:
09-24 21:24:35.901: ERROR/AndroidRuntime(5892):
android.content.ActivityNotFoundException:
No Activity found to handle Intent
{ action=android.settings.DISPLAY_SETTINGS }
user157195
source
share