I am trying to create and custom datatype and add value in it.
I have created 2 fields successfully, I am getting in call back. My code is
// Subscribe to some data sources!
DataTypeCreateRequest request = new DataTypeCreateRequest.Builder()
// The prefix of your data type name must match your app's package name
.setName("com.fitnessapi.data_type")
// Add some custom fields, both int and float
.addField("one", Field.FORMAT_FLOAT)
.addField("two", Field.FORMAT_FLOAT)
.addField(Field.FIELD_ACTIVITY)
.build();
PendingResult<DataTypeResult> pendingResult = Fitness.ConfigApi.createCustomDataType(mClient, request);
request.
pendingResult.setResultCallback(
new ResultCallback<DataTypeResult>() {
@Override
public void onResult(DataTypeResult dataTypeResult) {
// Retrieve the created data type
DataType customType = dataTypeResult.getDataType();
System.out.println("one two" + customType.toString());
}
}
);
// [START auth_build_googleapiclient_ending]
}
I am not able to find any method to fill values in these 2 fields.
I ran into this problem too.
the doc says to use getVaule :
The problem is the getVaule method wants a Field. After playing around with it I found that you can get a list of Fields by:
So to set your custom DateType Fields I am using this method.
No idea of this is right, or a dumb way of doing it but it works.