Need help here, about onPostExecute. If I want to put the update on textView what should be the code and what should I do?.
@Override
protected Value[] doIn
If you want get last value from Ubidots to your textview. You can try this, but u must set the textview first OnCreate
@Override
protected void onPostExecute(Value[] variableValues) {
// Update your views here
String status = Double.toString(variableValues[0].getValue());
//this is textview for show last value from ubidots
mBatteryStatus.setText(status);
}
}