gpt4 book ai didi

java - Android 运行应用程序时出错 : Default Activity not found

转载 作者:行者123 更新时间:2023-12-02 02:40:00 26 4
gpt4 key购买 nike

我的程序在 Android Studio 中出现以下错误。

00:28 运行应用时出错:未找到默认 Activity

我认为问题出在 AndroidManifest.xml

`

    <application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".DisplayMessageActivity"
android:parentActivityName=".MainActivity">
</activity>
</application>

`有人可以帮我吗?

最佳答案

Default Activity not found

您的应用程序没有 <activity>它将由主屏幕启动。那需要有适当的<intent-filter> ,如:

<activity android:name="MainActivity">
<!-- This activity is the main entry, should appear in app launcher -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

另外:

  • 属性 parentActivityName仅用于 API 级别 16 及更高级别(当前最小值为 15)just means that your android:parentActivityName` 属性不会对您支持的某些设备产生影响

  • 但是,android:parentActivityName指向 list 中不存在的 Activity ( MainActivity )

关于java - Android 运行应用程序时出错 : Default Activity not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45655812/

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