Home
last modified time | relevance | path

Searched refs:scanResult (Results 1 – 1 of 1) sorted by relevance

/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
DScanResultAdapter.java76 ScanResult scanResult = mArrayList.get(position); in getView() local
78 String name = scanResult.getDevice().getName(); in getView()
83 deviceAddressView.setText(scanResult.getDevice().getAddress()); in getView()
84 lastSeenView.setText(getTimeSinceString(mContext, scanResult.getTimestampNanos())); in getView()
108 public void add(ScanResult scanResult) { in add() argument
110 int existingPosition = getPosition(scanResult.getDevice().getAddress()); in add()
114 mArrayList.set(existingPosition, scanResult); in add()
117 mArrayList.add(scanResult); in add()