0

我正在使用 Android Studio 1.0.2,并按照 Android 开发者网站上的说明创建了一个新的表盘项目:https ://developer.android.com/training/wearables/watch-faces/service.html 我结束了使用可以在我的手表上运行的应用程序,显示Hello round world文本,但表盘在表盘选择器中不可用/可见。就像清单文件中没有服务注册一样。我不知道可能出了什么问题 - 我仔细检查了清单文件中的所有步骤和必要的设置。有谁知道要检查什么?有没有人遇到过同样的问题?谢谢!

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cz.dmn.meteorwatch" >

<uses-permission android:name="com.google.android.permission.PROVIDE_BACKGROUND" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<uses-feature android:name="android.hardware.type.watch" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.DeviceDefault" >
    <activity
        android:name=".WatchfaceActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

<service
    android:name=".MeteorWatchFaceService"
    android:label="Meteor"
    android:allowEmbedded="true"
    android:taskAffinity=""
    android:permission="android.permission.BIND_WALLPAPER" >
    <meta-data
        android:name="android.service.wallpaper"
        android:resource="@xml/watch_face" />
    <meta-data
        android:name="com.google.android.wearable.watchface.preview"
        android:resource="@drawable/preview" />
    <!--<meta-data
        android:name="com.google.android.wearable.watchface.preview_circular"
        android:resource="@drawable/preview" />-->
    <intent-filter>
        <action android:name="android.service.wallpaper.WallpaperService" />
        <category
            android:name=
                "com.google.android.wearable.watchface.category.WATCH_FACE" />
    </intent-filter>
</service>

4

1 回答 1

0

与我发现的示例应用程序清单相比,我<service>在清单文件中放错了标签。将它放在<application>标签中解决了这个问题。抱歉打扰了这么愚蠢的错误。

于 2015-01-15T08:18:43.880 回答