私は multiselect spinner を持っていますが、いずれかを選択するとスピナーが閉じます。いろいろ選びたい。これが私のコードです:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.search);
ArrayList<CategorySearch> categoriesList = new ArrayList<CategorySearch>();
categorySpinner =(Spinner)findViewById(R.id.categorySpinner);
subCategorySpinner = (Spinner)findViewById(R.id.subCategorySpinner);
categoriesList = populateList();
ArrayAdapter<CategorySearch> categoriesAdapter = new ArrayAdapter<CategorySearch>(this, android.R.layout.select_dialog_multichoice, categoriesList);
categorySpinner.setAdapter(categoriesAdapter);
いずれかを選択すると、リストが閉じます...以前はありがとうございました!