我一直在尝试将数据推送到android服装模拟器。但一切都是徒劳的。我在仿真器上的监听器没有收到任何呼叫。如果其他人尝试过磨损和推送数据,请帮助。
这是我的接收器代码的样子
private GoogleApiClient mGoogleApiClient;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_qrcode_generation);
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Wearable.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
final WatchViewStub stub = (WatchViewStub) findViewById(R.id.watch_view_stub);
stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener() {
@Override
public void onLayoutInflated(WatchViewStub stub) {
ivQrImage = (ImageView) stub.findViewById(R.id.ivQRImage);
}
});
}
@Override
public void onDataChanged(DataEventBuffer dataEvents) {
for (DataEvent event : dataEvents) {
if (event.getType() == DataEvent.TYPE_CHANGED &&
event.getDataItem().getUri().getPath().equals("/image")) {
final DataMapItem dataMapItem = DataMapItem.fromDataItem(event.getDataItem());
final Asset profileAsset = dataMapItem.getDataMap().getAsset("profileImage");
final Bitmap bitmap = loadBitmapFromAsset(profileAsset);
Log.d(TAG, ""+bitmap);
if (null != bitmap) {
ivQrImage.setImageBitmap(bitmap);
bitmap.recycle();
}
}
}
}
@Override
protected void onStart() {
super.onStart();
mGoogleApiClient.connect();
}
@Override
protected void onStop() {
if (null != mGoogleApiClient && mGoogleApiClient.isConnected()) {
Wearable.DataApi.removeListener(mGoogleApiClient, this);
mGoogleApiClient.disconnect();
}
super.onStop();
}
public Bitmap loadBitmapFromAsset(Asset asset) {
if (asset == null) {
throw new IllegalArgumentException("Asset must be non-null");
}
ConnectionResult result =
mGoogleApiClient.blockingConnect(TIMEOUT_MS, TimeUnit.MILLISECONDS);
if (!result.isSuccess()) {
return null;
}
// convert asset into a file descriptor and block until it's ready
InputStream assetInputStream = Wearable.DataApi.getFdForAsset(
mGoogleApiClient, asset).await().getInputStream();
mGoogleApiClient.disconnect();
if (assetInputStream == null) {
Log.w(TAG, "Requested an unknown Asset.");
return null;
}
// decode the stream into a bitmap
return BitmapFactory.decodeStream(assetInputStream);
}
@Override
public void onConnectionFailed(ConnectionResult connectionResult) {
Log.d(TAG,"Connection Failed");
}
@Override
public void onConnected(Bundle bundle) {
Wearable.DataApi.addListener(mGoogleApiClient, this);
Wearable.MessageApi.addListener(mGoogleApiClient, this);
}
这就是我推动的方式
private void pushImageToWear() {
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.qr_code);
Asset asset = createAssetFromBitmap(bitmap);
PutDataMapRequest dataMap = PutDataMapRequest.create("/image");
dataMap.getDataMap().putAsset("profileImage", asset);
PutDataRequest request = dataMap.asPutDataRequest();
PendingResult<DataApi.DataItemResult> pendingResult = Wearable.DataApi
.putDataItem(mGoogleApiClient, request);
}
我在Android Wear活动的清单中也有以下内容
<activity
android:name=".QRCodeReceptionActivity"
android:label="@string/app_name"
android:exported="true"
android:allowEmbedded="true"
android:taskAffinity=""
android:theme="@android:style/Theme.DeviceDefault.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
P.S。我正在做的事没有什么特别之处。只需按照开发者网站上提供的tutorial即可。
答案 0 :(得分:35)
很抱歉我使用了答案,但我需要50的声誉来评论:(
我在https://stackoverflow.com/...遇到了同样的问题,但现在我修复了它。
好的,我和你分享了我遇到的所有问题:
首先在手机上的AndroidManifest.xml文件中添加以下内容:
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
第二个让我感到困惑的是,onDataChanged()仅在内部的DataItem真正被改变时被调用&#34;。所以它可能是第一次有效,但后来什么都不会发生。
我更改了手机上的代码,因此每当我尝试发送数据时,它都会有不同的时间戳:
Asset asset = createAssetFromBitmap(bitmap);
PutDataMapRequest request = PutDataMapRequest.create("/image");
DataMap map = request.getDataMap();
map.putLong("time", new Date().getTime()); // MOST IMPORTANT LINE FOR TIMESTAMP
map.putAsset("profileImage", asset);
Wearable.DataApi.putDataItem(mGoogleApiClient, request.asPutDataRequest());
我在IO Video
中找到了其余代码看起来像你的。 我希望这有帮助。
答案 1 :(得分:5)
我也有这个问题,需要几个小时才能解决。我的推荐?使用Android Studio创建新项目,并选择Android Wear和Phone + Tablet作为项目类型。这将为您提供一个工作项目的框架,然后只需移植到您现有的项目与自动生成的骨架的差异。
对我来说,问题最终是以下各项的结合:
defaultConfig
构建条目中,您的可穿戴应用和移动应用的applicationId必须相同,例如:
defaultConfig {
applicationId "com.rukkus.app"
...
}
dependencies {
...
wearApp project(':wear')
}
另外(并且我不确定这是否有必要),Google示例中的样本在WearableListenerService
的onCreate(而不是onDataChanged
中连接到Google API如文档所示的方法)。所以我的onCreate在WearableListenerService
:
@Override
public void onCreate() {
super.onCreate();
// create Google Client
GoogleApiClient googleApiClient = new GoogleApiClient.Builder(this.ctx)
.addOnConnectionFailedListener(new GoogleApiClient.OnConnectionFailedListener() {
@Override
public void onConnectionFailed(ConnectionResult result){
}
})
.addApi(Wearable.API).build();
//connect the client
googleApiClient.connect();
Log.i(TAG, "**creating google API client now**");
}
这比我承认要工作的时间要长,所以希望这有助于未来的Google员工。
答案 2 :(得分:3)
你的设备applicationId和可穿戴的applicationId必须匹配,正如@Bobby在他的回答中所述。我不需要将可穿戴应用程序作为依赖项。
答案 3 :(得分:3)
我发现了另一个要添加到核对清单的原因。可穿戴和移动应用程序必须使用相同版本的磨损库构建。检查gradle依赖项中的版本。
compile 'com.google.android.support:wearable:1.3.0'
compile 'com.google.android.gms:play-services-wearable:8.1.0'
(我没有足够的声誉点评论)