Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. if (pairedDevices.size() > 0) {
  2. findViewById(R.id.title_paired_devices).setVisibility(View.VISIBLE);//make title viewable
  3. for (BluetoothDevice device : pairedDevices) {
  4. mPairedDevicesArrayAdapter.add(device.getName() + "n" + device.getAddress());
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement