16

我一直在尝试将数据推送到 android wear 模拟器。但一切都是徒劳的。我在模拟器上的听众没有接到任何电话。如果其他人尝试过进行磨损并推送数据以进行磨损,请帮助。

这就是我的接收器代码的样子

 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>

PS我正在做的事情没有什么特别的。只需按照开发人员网站上给出的教程进行操作即可。

4

4 回答 4

35

对不起,我使用了答案,但我需要 50 的声誉才能发表评论:(

我在这里https://stackoverflow.com/...遇到了同样的问题,但现在我修复了它。

好的,我与您分享我遇到的所有问题:

首先在手机上的AndroidManifest.xml文件中添加以下内容:

<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

其次让我有点困惑的是,只有当里面的 DataItem 真正“改变”时才会调用 onDataChanged() 。所以它可能是第一次工作,但后来什么都不会发生。

我更改了手机上的代码,所以每次我尝试发送数据时,它都有不同的时间戳:

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 视频中发现

其余的代码看起来像你的。我希望这会有所帮助。

于 2014-07-11T12:05:50.493 回答
5

我也有这个问题,花了几个小时才解决。我的推荐?使用 Android Studio 创建一个新项目,并选择 Android Wear 和 Phone + Tablet 作为项目类型。这将为您提供一个工作项目的骨架,然后只需将与自动生成的骨架的差异移植到您现有的项目中即可。

对我来说,问题最终是以下几点的组合:

  • 在您的defaultConfig构建条目中,您的可穿戴应用程序和移动应用程序的 applicationId 必须相同,例如: defaultConfig { applicationId "com.rukkus.app" ... }
  • 移动应用程序必须将 wearApp 添加为依赖项,如下所示: dependencies { ... wearApp project(':wear') }

此外(诚然,我不确定这是必要的),在示例中,Google Dev 在 onCreate 中连接到 Google API WearableListenerService(而不是在onDataChanged文档说明的方法中)。所以我的 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**");
}

这比我承认的开始工作花费的时间更长,所以希望这可以帮助一些未来的谷歌员工。

于 2015-04-30T00:53:17.917 回答
3

正如@Bobby 在他的回答中所说,您的设备应用程序 ID 和可穿戴应用程序 ID 必须匹配。我不需要将可穿戴应用程序作为依赖项。

于 2015-05-13T23:57:46.733 回答
3

我发现了另一个添加到清单中的原因。可穿戴应用程序和移动应用程序必须使用相同版本的穿戴库构建。检查您的 gradle 依赖项中的版本。

compile 'com.google.android.support:wearable:1.3.0'
compile 'com.google.android.gms:play-services-wearable:8.1.0'

(我没有足够的声望点来评论)

于 2015-10-15T18:46:44.957 回答