質問編集履歴
1
使用API追加
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -12,4 +12,16 @@
|
|
|
12
12
|
DeviceInformationCollection devices = await DeviceInformation.FindAllAsync(GattDeviceService.GetDeviceSelectorFromUuid(new Guid("指定のUUID")), new string[] { "System.Devices.ContainerId" });
|
|
13
13
|
```
|
|
14
14
|
この処理でdevices オブジェクトに入ってきたデバイスNameを元にBLEGattのコネクション処理を行っていました。
|
|
15
|
-
このWindowsの処理はAndoroidの場合どういうコードで置き換えられるでしょうか?
|
|
15
|
+
このWindowsの処理はAndoroidの場合どういうコードで置き換えられるでしょうか?
|
|
16
|
+
|
|
17
|
+
使用出来るAPIはAndroidAPIです。
|
|
18
|
+
下記使用API
|
|
19
|
+
using System;
|
|
20
|
+
using Android.App;
|
|
21
|
+
using Android.Bluetooth;
|
|
22
|
+
using Android.Content;
|
|
23
|
+
using Android.OS;
|
|
24
|
+
using Android.Util;
|
|
25
|
+
using Android.Views;
|
|
26
|
+
using Android.Views.InputMethods;
|
|
27
|
+
using Android.Widget;
|