gpt4 book ai didi

仅限小部件的应用程序 : Default Activity not found

转载 作者:行者123 更新时间:2023-12-04 01:17:51 27 4
gpt4 key购买 nike

我正在创建一个仅小部件应用程序。

该项目使用的是较旧的 SDK 版本,并且没问题。

现在,当我下载最新的 Android Studio 包时,它不会运行我的应用程序,它说:

Error running app: Default Activity not found

但我不想要任何事件。我只想要一个简单的小部件,而不是任何事件。

我知道很多人都问过这个问题,但相信我,没有人能回答我的问题。

ps:如果我添加一个事件并使用以下代码将其设为默认事件,它运行正常,但正如我所说,我不想要任何默认事件。有什么办法吗?
<activity
android:name=".MainActivity"
android:label="MyAppName" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

这是我的 list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.PerCalendar.perc"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name=".WidgetProvider" >
<intent-filter>
<!-- This widget provider receives broadcast with following action name or simply onUpdate of AppWidgetProvider is called -->
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<!-- linking up xml file of appwidget-provider to AppWidgetProvider -->
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>

<service
android:name=".WidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
</application>

</manifest>

最佳答案

安装和启动应用程序时的默认操作是启动默认事件。由于您在启动小部件时没有明确启动事件,因此只需将其关闭...

选择菜单运行 -> 编辑配置。
在应用程序的常规选项卡中,查找启动选项并选择 没什么而不是 默认事件 .

为 Android Studio 提供的最新更新/迁移之一丢失了此选项。

关于仅限小部件的应用程序 : Default Activity not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40134282/

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