В моем приложении у меня есть один Spinner
, и я должен показать некоторые данные с сервера в этот Spinner
.
Данные моего сервера имеют:
"sections": [{
"id": 1,
"name": "Item 1"
}, {
"id": 2,
"name": "Item 2"
}, {
"id": 3,
"name": "Item 3"
}]
Дляэто spinner
я должен установить текст по умолчанию для первого показа и когда пользователи нажимают на spinners
элемент показывать эти элементы вместо текста по умолчанию.
Для этого я пишу коды ниже, но я не знаю, как я могу установить clickListener
для этих элементов для получения идентификатора каждого элемента!
Myкод адаптера:
public class DashboardSupportSectionAdapter extends ArrayAdapter<Section> {
Context context;
List<Section> model;
String firstElement;
boolean isFirstTime;
public DashboardSupportSectionAdapter(Context context, int textViewResourceId, List<Section> model, String defaultText) {
super(context, textViewResourceId, model);
this.context = context;
this.model = model;
this.isFirstTime = true;
setDefaultText(defaultText);
}
@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
if (isFirstTime) {
model.get(0).setName(firstElement);
isFirstTime = false;
}
return getCustomView(position, convertView, parent);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
notifyDataSetChanged();
return getCustomView(position, convertView, parent);
}
public void setDefaultText(String defaultText) {
this.firstElement = model.get(0).getName();
model.get(0).setName(defaultText);
}
public View getCustomView(final int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View row = inflater.inflate(R.layout.row_dashboard_support_section, parent, false);
TextView label = row.findViewById(R.id.spinner_text);
label.setText(model.get(position).getName());
return row;
}
}
Код моей активности:
public class DashboardCreateSupportActivity extends BaseActivity {
@BindView(R.id.dashboardCreateSupport_sectionSpinner)
Spinner dashboardCreateSupport_sectionSpinner;
String defaultTextForSpinner = "Select section";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dashboard_create_support);
ButterKnife.bind(this);
dashboardCreateSupport_sectionSpinner.setAdapter(new DashboardSupportSectionAdapter(this, R.layout.row_dashboard_support_section,
Constants.supportListResponse.getRes().getSections(), defaultTextForSpinner));
}
}
Я хочу, когда нажимает на каждом элементе, показывает идентификаторэлемента в toast
сообщении.
Как я могу это сделать?