Ejemplo n.º 1
0
 private void bindDataOnView(int position) {
   Vehicle temp = vehicleList.get(position);
   etName.setText(temp.getName());
   edtRego.setText(temp.getRego());
   edtMake.setText(temp.getMake());
   edtModel.setText(temp.getModel());
   edtPhone.setText(temp.getYourPhone());
   edtAddress.setText(temp.getYourAddress());
   edtRegoDate.setText(temp.getRegoReminder());
 }