我想在活动中调整显示设置.
Intent intent=new Intent(Settings.ACTION_DISPLAY_SETTINGS); startActivity(intent);
但我得到以下异常:
09-24 21:24:35.901: ERROR/AndroidRuntime(5892):
android.content.ActivityNotFoundException:
No Activity found to handle Intent
{ action=android.settings.DISPLAY_SETTINGS }
最佳答案
你应该 :
原文链接:https://www.f2er.com/android/531423.htmltry {
final Intent i = new Intent(Settings.ACTION_DISPLAY_SETTINGS);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // not sure if needed
startActivity(i);
} catch (ActivityNotFoundException e) {
// not much you can do
}