我正在开发一个包含一些可穿戴功能的 Android 应用程序。我有一些使用 WearableExtender 的通知,它们工作正常。但是当我尝试使用 Data Layer Api 时它不起作用。
我已经使用了这篇文章的答案中提出的代码:Android Wear Watchface Settings on host but onDataChanged(DataEventBuffer dataEvents) is never called。我正在使用 Android 模拟器进行移动和观看。
这是我在手表的 LogCat 上得到的:
11-10 05:43:44.777: D/DataItems(1333): inserted data item row 60 for DataItemRecord
[es.example.rebeca.prueba,10b8f01e736f2a1276b2bbf41a6c6dd18c005e65,DataItemInternal
[f702125c, dataSz=65, host=db03afd0-746e-48ad-8b0d-98ff360bf672, path=/SAMPLE, numAssets=0],
db03afd0-746e-48ad-8b0d-98ff360bf672,seqId=13136,assetsAreReady=false]
似乎在手表上收到了带有适当路径(path=/SAMPLE)的东西。但是,我看不到任何消息(我放了一些日志来检查数据是否到达手表)。
任何提示将不胜感激。
编辑:
我在手机端使用的代码:
public class MainActivity extends Activity {
private GoogleApiClient mGoogleApiClient;
@Override
protected void onCreate(Bundle savedInstanceState) {
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(new GoogleApiClient.ConnectionCallbacks() {
@Override
public void onConnected(Bundle connectionHint) {
Log.d("DataLayerApi", "onConnected()"); //This is shown
}
@Override
public void onConnectionSuspended(int cause) { }
})
.addOnConnectionFailedListener(new GoogleApiClient.OnConnectionFailedListener() {
@Override
public void onConnectionFailed(ConnectionResult result) {}
})
.addApi(Wearable.API)
.build();
mGoogleApiClient.connect();
}
public void sendWearable(View v) { //This is a button
syncSampleDataItem();
}
private void syncSampleDataItem() {
if(mGoogleApiClient == null)
return;
final PutDataMapRequest putRequest = PutDataMapRequest.create("/SAMPLE");
final DataMap map = putRequest.getDataMap();
map.putInt("color", Color.RED);
map.putString("string_example", "Sample String");
Wearable.DataApi.putDataItem(mGoogleApiClient, putRequest.asPutDataRequest());
}
}
在AndroidManifest.xml中:
<uses-feature android:name="android.hardware.type.watch" />
我在可穿戴方面使用的代码:
public class ListenerService extends WearableListenerService {
String myTag = "DataLayerApi";
@Override
public void onDataChanged(DataEventBuffer dataEvents) {
super.onDataChanged(dataEvents);
Log.d(myTag, "onDataChanged()" + dataEvents); //This is NEVER shown
final List<DataEvent> events = FreezableUtils.freezeIterable(dataEvents);
for(DataEvent event : events) {
final Uri uri = event.getDataItem().getUri();
final String path = uri!=null ? uri.getPath() : null;
if("/SAMPLE".equals(path)) {
final DataMap map = DataMapItem.fromDataItem(event.getDataItem()).getDataMap();
// read your values from map:
int color = map.getInt("color");
String stringExample = map.getString("string_example");
Log.d(myTag, color + stringExample); //This is NEVER shown
}
}
}
在AndroidManifest.xml中:
<service android:name=".ListenerService"
android:exported="true" >
<intent-filter>
<action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
</intent-filter>
</service>
在两个 清单中我都有一行:
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
在应用程序标签内