Java-未找到Android Settings.ACTION_DISPLAY_SETTINGS

前端之家收集整理的这篇文章主要介绍了Java-未找到Android Settings.ACTION_DISPLAY_SETTINGS 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在活动中调整显示设置.

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 }
最佳答案
你应该 :

try {
    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
}
原文链接:https://www.f2er.com/android/531423.html

猜你在找的Android相关文章