我有一个湿度传感器,它在固定的时间间隔后将最后十个值作为单个数组广播。我希望在十Textview
个中显示这些值。
我当前的代码显示单个TextView
中的所有值,我该如何修改它?
怎么可能呢?
@Override
public void onCharacteristicRead(BluetoothGatt gatt,
BluetoothGattCharacteristic characteristic, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
if (BleUuid.READ_SENSOR
.equalsIgnoreCase(characteristic.getUuid().toString())) {
final String values = characteristic.getStringValue(0);
byte[] bytes =values.getBytes();
final String value = new String(bytes);
runOnUiThread(new Runnable() {
public void run() {
statuslv.setText(value);
setProgressBarIndeterminateVisibility(false);
}
});