我正在创建一个仅限小部件的应用程序。
该项目是在较旧的SDK版本上,没关系。
现在,当我下载最新的Android Studio套装时,它并没有运行我的应用程序,它说:
Error running app: Default Activity not found
但我不想要任何活动。我只想要一个简单的小部件,而不是任何活动。
我知道很多人都问过这个问题,但是相信我,他们没有得到我的问题的答案。
p.s:如果我添加一个活动,并使用以下代码将其设为默认活动,它运行正常,但正如我所说,我不想要任何默认活动。有什么办法吗?
<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>
这是我的清单:
<?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>
答案 0 :(得分:41)
安装和启动应用程序时的默认操作是启动默认活动。由于您在启动窗口小部件时未显式启动活动,因此只需将其关闭...
选择菜单运行 - &gt; 编辑配置。 在 app 的常规标签中,查找启动选项,然后选择 Nothing ,而不是默认活动< /强>
此选项因为为Android Studio提供的最新更新/迁移之一而丢失。