gpt4 book ai didi

android:name ="com.google.android.wearable.watchface.preview"表盘无法识别

转载 作者:行者123 更新时间:2023-11-29 20:39:23 28 4
gpt4 key购买 nike

我正在学习这两个教程:tutorial 1tutorial 2 .但是在我的 AndroidManifest.xml 文件中,以下几行在表盘下方有一个下划线,所以我想知道如何修复它。这是我的源代码:https://github.com/lamiastella/AndroidWearApp

enter image description here与此处显示的解决方案树相比,我担心我的 AndroidManifest.xml 中可能有错误: enter image description here此外,我收到此错误:

06-30 00:54:55.461    1361-1602/com.google.android.gms.wearable W/WearableConn﹕ Error writing to device, error: failed to connect to /10.0.2.2 (port 5601): connect failed: ECONNREFUSED (Connection refused)

enter image description here

这是 AndroidManifest.xml 的代码:

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

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

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

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault" >

<service
android:name=".WeatherWatchFaceService"
android:label="Weather"
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_circular" />
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
<category android:name="com.google.android.wearable.watchface.category.WATCH_FACE" />
</intent-filter>
</service>
</application>
</manifest>

旁注:我不确定为什么 Android Wear 运行按钮上有一个红叉。 enter image description here enter image description here

您可能会问问题是什么?我在模拟器中找不到表盘程序。我所看到的只是一个蓝色的首页,然后当我滑动它时,它会转到一个议程,就像你在这里看到的那样: enter image description here enter image description here

Gradle :

Configuration on demand is an incubating feature.
:wear:preBuild UP-TO-DATE
:wear:preDebugBuild UP-TO-DATE
:wear:checkDebugManifest
:wear:preReleaseBuild UP-TO-DATE
:wear:prepareComAndroidSupportRecyclerviewV72200Library UP-TO-DATE
:wear:prepareComAndroidSupportSupportV42200Library UP-TO-DATE
:wear:prepareComGoogleAndroidGmsPlayServicesBase750Library UP-TO-DATE
:wear:prepareComGoogleAndroidGmsPlayServicesWearable750Library UP-TO-DATE
:wear:prepareComGoogleAndroidSupportWearable120Library UP-TO-DATE
:wear:prepareDebugDependencies
:wear:compileDebugAidl UP-TO-DATE
:wear:compileDebugRenderscript UP-TO-DATE
:wear:generateDebugBuildConfig UP-TO-DATE
:wear:generateDebugAssets UP-TO-DATE
:wear:mergeDebugAssets UP-TO-DATE
:wear:generateDebugResValues UP-TO-DATE
:wear:generateDebugResources UP-TO-DATE
:wear:mergeDebugResources UP-TO-DATE
:wear:processDebugManifest UP-TO-DATE
:wear:processDebugResources UP-TO-DATE
:wear:generateDebugSources UP-TO-DATE
:wear:processDebugJavaRes UP-TO-DATE
:wear:compileDebugJava UP-TO-DATE
:wear:compileDebugNdk UP-TO-DATE
:wear:compileDebugSources UP-TO-DATE
:wear:preDexDebug UP-TO-DATE
:wear:dexDebug UP-TO-DATE
:wear:validateDebugSigning
:wear:packageDebug UP-TO-DATE
:wear:zipalignDebug UP-TO-DATE
:wear:assembleDebug UP-TO-DATE

BUILD SUCCESSFUL

Total time: 3.701 secs

这是 build.gradle (Module:wear) 中的内容

apply plugin: 'com.android.application'


android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.example.mona.app1"
minSdkVersion 21
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:1.2.0'
compile 'com.google.android.gms:play-services-wearable:7.5.0'
}

最佳答案

您的表盘实际上工作正常。

首先,com.google.android.wearable.watchface.preview 上的下划线实际上也出现在官方示例中。这是认为存在错误的拼写检查器。

其次,它实际上安装正确,但您不会通过滑动到应用程序菜单来更改表盘。选择新的表盘,长按屏幕2秒左右,会进入特殊表盘选择界面。您的表盘会出现在那里,您可以将其激活。

关于android:name ="com.google.android.wearable.watchface.preview"表盘无法识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31127926/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com