gpt4 book ai didi

android - Android错误:权限拒绝:启动 Intent

转载 作者:行者123 更新时间:2023-11-30 04:53:45 25 4
gpt4 key购买 nike

我想使用ActivityOptions,但是当我尝试运行我的应用程序时,出现了安全异常


  权限拒绝:启动意图。


ActivityOptions options = ActivityOptions.makeBasic();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
options.setLaunchDisplayId(1);
}
Intent secondIntent = new Intent(HomeActivity.this, TestActivity.class);
secondIntent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(secondIntent, options.toBundle());


有谁知道我能做什么?

最佳答案

如下更改活动清单标签。

<activity
android:name="com.example.lib.MainActivity"
android:label="LibMain"
android:exported="true"> //add this line
<intent-filter>
<action android:name="android.intent.action.MAIN" >
</action>
</intent-filter>
</activity>


例外很明显。您需要在声明此活动的AndroidManifest.xml文件中设置android:exported =“ true”。

关于android - Android错误:权限拒绝:启动 Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59574960/

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