1.传递
putParcelableArrayListExtra(
ConstantsUtil.BLUETOOTH_GATT_SERVICE_LIST,
mGattServiceList
)
val mGattServiceList = ArrayList<BluetoothGattService>()
2.接收
mBluetoothGattService = intent.getParcelableArrayListExtra<BluetoothGattService>(ConstantsUtil.BLUETOOTH_GATT_SERVICE_LIST) as ArrayList<BluetoothGattService>
private lateinit var mBluetoothGattService: ArrayList<BluetoothGattService>