package nodomain.freeyourgadget.gadgetbridge.adapter; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.TextView; import java.util.List; import nodomain.freeyourgadget.gadgetbridge.GBDevice; import nodomain.freeyourgadget.gadgetbridge.R; public class GBDeviceAdapter extends ArrayAdapter { private final Context context; private final List deviceList; public GBDeviceAdapter(Context context, List deviceList) { super(context, 0, deviceList); this.context = context; this.deviceList = deviceList; } @Override public View getView(int position, View view, ViewGroup parent) { GBDevice device = getItem(position); if (view == null) { LayoutInflater inflater = (LayoutInflater) context .getSystemService(Context.LAYOUT_INFLATER_SERVICE); view = inflater.inflate(R.layout.device_item, parent, false); } TextView deviceStatusLabel = (TextView) view.findViewById(R.id.device_status); TextView deviceNameLabel = (TextView) view.findViewById(R.id.device_name); deviceStatusLabel.setText(device.getStatus()); deviceNameLabel.setText(device.getName()); return view; } }