Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a custom Spinner on Android to select a item. It works on Android 2.3-, but on Android 4 (that I've tested), I can open the list, but I can't select any item. The code is the following:

in the onCreate() method

List<Team> teams; // previously loaded from SQLite database
TeamsAdapter adapter = new TeamsAdapter(this, R.layout.my_spinner_line, teams);
mySpinner.setAdapter(adapter);

and my TeamsAdapter class

public class TeamsAdapter extends ArrayAdapter<Team> {

    public AdapterTime(Context context, int textViewResourceId, List<Team> objects) {
        super(context, textViewResourceId, objects);
    }

    @Override
    public View getDropDownView(int position, View convertView, ViewGroup parent) {
        return getCustomView(position, convertView, parent);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        return getCustomView(position, convertView, parent);
    }

    public View getCustomView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater = getLayoutInflater();
        View row = inflater.inflate(R.layout.my_spinner_line, parent, false);
        TextView label = (TextView) row.findViewById(R.id.team_name);
        label.setText(teams.get(position).getName());

        ImageView icon = (ImageView) row.findViewById(R.id.team_image);
        icon.setImageResource(teams.get(position).getImageResource());

        return row;
    }
}

the spinner on menu enter image description here

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.