没有找到发射器

时间:2014-11-22 07:18:35

标签: android manifest live-wallpaper

我已下载代码并已导入,而我正在运行代码时遇到错误,例如找不到Launcher活动!并且启动只会同步设备上的应用程序包!。

我搜索并得到一个解决方案,在清单主要和启动器动作应该是一个接一个。我已经完成了但是得到了相同的错误,我的应用程序不在模拟器中,即使我收到“Wallpaper \ bin \ Wallpaper在设备上安装”的消息。

这是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.wallpaper"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
         android:minSdkVersion="8"
         android:targetSdkVersion="17" />
    <uses-feature
        android:name="android.software.live_wallpaper"
        android:required="true" >
    </uses-feature>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <service
            android:name="LiveWallpaperService"
            android:enabled="true"
            android:label="Wallpaper Example "
            android:permission="android.permission.BIND_WALLPAPER" >
            <intent-filter>
                <action android:name="android.service.wallpaper.WallpaperService" />
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data
                android:name="android.service.wallpaper"
                android:resource="@xml/mywallpaper" >
            </meta-data>
        </service>
    </application>
</manifest>

2 个答案:

答案 0 :(得分:0)

您无法将意图过滤器Launcher和Main设置为该服务。只能启动活动。添加活动以在项目中启动服务,并将启动器和主要intent-filter设置为活动。

答案 1 :(得分:0)

定义像这样的启动器活动,

<activity
    android:name=".yourlauncheractivity"
    android:screenOrientation="portrait"
    android:theme="@android:style/Theme.Light.NoTitleBar" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

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

&安培;在此启动器活动中启动您的服务