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.GBDeviceApp; import nodomain.freeyourgadget.gadgetbridge.R; public class GBDeviceAppAdapter extends ArrayAdapter { private final Context context; private final List appList; public GBDeviceAppAdapter(Context context, List appList) { super(context, 0, appList); this.context = context; this.appList = appList; } @Override public View getView(int position, View view, ViewGroup parent) { GBDeviceApp deviceApp = 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(deviceApp.getVersion() + " by " + deviceApp.getCreator()); deviceNameLabel.setText(deviceApp.getName()); return view; } }