android – 在Google Fit中为自定义DataType设置DataPoint

android – 在Google Fit中为自定义DataType设置DataPoint,第1张

概述我尝试为将使用Google Fit的应用程序设置自定义数据类型的数据点时出现以下错误. 错误:DataPoint中的getValue(com.google.android.gms.fitness.data.Field)无法应用于(int) DataPoint dataPoint = DataPOint.create(myDataSource);dataPoint.getValue(0).setI 我尝试为将使用Google Fit的应用程序设置自定义数据类型的数据点时出现以下错误.

错误:DataPoint中的getValue(com.Google.android.gms.fitness.data.FIEld)无法应用于(int)

DataPoint dataPoint = DataPOint.create(myDataSource);dataPoint.getValue(0).setInt(totalCount);dataSet.add(dataPoint);

我知道我错过了什么,但我不确定是什么.

解决方法 我不得不创建自己的字段,不知道.zzn是什么,但在探索FIEld数据类型后,我看到了这个方法,它似乎工作得很远

myFIEld = FIEld.zzn("custom",FIEld.FORMAT_INT32);DataTypeCreateRequest request = new DataTypeCreateRequest.Builder()        .setname("net.riversIDestudios.pushupchallenge.pushup")        .addFIEld(myFIEld)        .build();
总结

以上是内存溢出为你收集整理的android – 在Google Fit中为自定义DataType设置DataPoint全部内容,希望文章能够帮你解决android – 在Google Fit中为自定义DataType设置DataPoint所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1127805.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存