summaryrefslogtreecommitdiff
path: root/Defogger/src/no/mork/android/defogger/ScanListAdapter.java
blob: c0b8a8d430f5db0e5224fdda39e44b17527b3744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package no.mork.android.defogger;

import android.bluetooth.BluetoothDevice;
import android.content.Context;
import android.widget.ArrayAdapter;

// originally from https://developer.android.com/guide/topics/ui/layout/recyclerview
// but converted to simpler ArrayAdapter using https://developer.android.com/guide/topics/ui/declaring-layout.html#FillingTheLayout

public class ScanListAdapter extends ArrayAdapter<BluetoothDevice> {

    public ScanListAdapter(Context context, int resource, int textViewResourceId)  {
	 super(context, resource, textViewResourceId);
    }
}