我正在使用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>
答案 0 :(得分:0)
与示例应用程序清单相比,我发现,我错放了清单文件中的<service>
标记。将其放在<application>
标签内解决了问题。
很抱歉打扰这个愚蠢的错误。