gpt4 book ai didi

java - Android Settings.ACTION_DISPLAY_SETTINGS 未找到

转载 作者:太空狗 更新时间:2023-10-29 12:58:55 26 4
gpt4 key购买 nike

我想在我的 Activity 中调整显示设置。

Intent intent=new Intent(Settings.ACTION_DISPLAY_SETTINGS);             startActivity(intent);

but i am getting 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 }

最佳答案

你应该:

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
}

关于java - Android Settings.ACTION_DISPLAY_SETTINGS 未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1474247/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com