找不到启动器活动!对于小部件?它必须是一项活动

时间:2010-10-13 23:35:16

标签: android android-widget

我有一个我开发的小部件,它在我的模拟器上运行良好。但是,当我去我的设备上运行它时,它不会显示在列表中

以下是我的控制台所说的内容:

[2010-10-14 12:43:43 - MyWidget] No Launcher activity found!
[2010-10-14 12:43:43 - MyWidget] The launch will only sync the application package on the device!**
[2010-10-14 12:43:43 - MyWidget] Performing sync
[2010-10-14 12:43:43 - MyWidget] Automatic Target Mode: using device 'D70068f58fd3'
[2010-10-14 12:43:43 - MyWidget] Uploading MyWidget.apk onto device 'D70068f58fd3'
[2010-10-14 12:43:43 - MyWidget] Installing MyWidget.apk...
[2010-10-14 12:43:45 - MyWidget] Success!
[2010-10-14 12:43:45 - MyWidget] /MyWidget/bin/MyWidget.apk installed on device
[2010-10-14 12:43:45 - MyWidget] Done!

我可以看到应用程序包确实是通过应用程序管理器在我的设备上。

我在SO上看过其他帖子: Android sample app not showing up launching android widgetFirst Android Test Project does not start

但我有一个小部件。这有什么不同吗?这是我的AndroidManifest.xml,确实有一个Launcher定义。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.example.widget"
android:versionCode="1"
  android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
    <receiver android:name=".MyWidget"
              android:label="Anything">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </receiver>

</application>
<uses-sdk android:minSdkVersion="7" />

1 个答案:

答案 0 :(得分:0)

在XML Manifest中,您已配置了接收器而非活动。 尝试类似的东西

<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
    <receiver android:name=".MyWidget"
              android:label="Anything">
    </receiver>
    <activity android:name="YourActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
    </activity>
</application>