我在DialogFragment中使用ArrayAdapter,可以在Android 4.0及更高版本上使用,但不能在2.3版本中使用。
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
// Get the layout inflater
LayoutInflater inflater = getActivity().getLayoutInflater();
View view = inflater.inflate(R.layout.dialog, null);
Spinner spReglement;
spReglement = (Spinner)view.findViewById(R.id.listReglements);
ArrayAdapter<String> adapterList = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1);
adapterList.setDropDownViewResource(R.layout.customspinner);
spReglement.setAdapter(adapterList);
HashMap<Integer, String> mapReglement = new HashMap<Integer, String>();
mapReglement.put(-1, "");
adapterList.add("");
for(int i=0; i<alReglement.size();i++){
String libelle = String.valueOf(alReglement.get(i).get("Libelle"));
mapReglement.put(i, libelle);
adapterList.add(libelle);
}
builder.setView(view)
.setPositiveButton("Valider", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
mListener.onDialogPositiveClick(DialogFSE.this);
}
})
.setNegativeButton("Annuler", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
mListener.onDialogNegativeClick(DialogFSE.this);
}
});
return builder.create();
}
我的布局“对话框”包含3个EditText和1个Spinner,我的布局“customspinner”只包含一个TextView。
当我在Android 2.3上执行我的应用时,我有以下异常: 致命异常:com.mypackage.myapss.mainThread java.lang.IllegalStateException:ArrayAdapter要求资源ID为TextView ...
现在不要,如果它有用,但我在我的应用程序中使用了android support v4库。
答案 0 :(得分:5)
您需要使用此ArrayAdapter构造函数。
ArrayAdapter(Context context, int resource, int textViewResourceId, List<T> objects);
修改强> 的
ArrayAdapter<String> adapterList = new ArrayAdapter<String>(getActivity(), R.layout.customspinnerregul, R.id.tvcustomspinner, al)