Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8194705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T04:54:49+00:00 2026-06-07T04:54:49+00:00

I have a custom implementation of an Array Adapter that I’m using in a

  • 0

I have a custom implementation of an Array Adapter that I’m using in a Spinner to get a custom layout for my objects.

With the Custom array adapter in use, I have dialog appear with the spinner options, but none of them can be selected. I can use the back button to dismiss the dialog.

OnItemSelected is not being called. (When I use the back button, OnNothingSelected is not called either).

Here’s some code:

Custom Adapter :

public class AboutSettingsServerAdapter extends ArrayAdapter <ServerItem> {

private ArrayList<ServerItem> mServers;
private Context mContext;

public AboutSettingsServerAdapter(Context context, int resource, ArrayList<ServerItem> serverItems) {
    super(context, resource, serverItems);
    mContext = context;
    mServers = serverItems;
}

public int getCount(){
   return mServers.size();
}

public ServerItem getItem(int position){
   return mServers.get(position);
}

public long getItemId(int position){
   return position;
}

public View getView (int position, View convertView, ViewGroup parent) {
       return getAdapterView(position, convertView, parent);
}

public View getDropDownView (int position, View convertView, ViewGroup parent) {
    return getAdapterView(position, convertView, parent);
}

public View getAdapterView(int position, View convertView, ViewGroup parent) {
    View view = convertView;
    if (view == null) {
        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        view = inflater.inflate(R.layout.spinner_item, null);
    }

    ServerItem item = mServers.get(position);
    if (item!= null) {
        TextView titleView      = (TextView) view.findViewById(R.id.server_settings_title);
        TextView subtitleView   = (TextView) view.findViewById(R.id.server_settings_subtitle);
        if (titleView != null) {
            titleView.setText(item.title);
        }

        if (subtitleView != null) {
            subtitleView.setText(item.url + "/" + item.path_extension);
        }

     }
    return view;
    }
}

Spinner initialization :

    AboutSettingsServerAdapter adapter = new AboutSettingsServerAdapter(this, R.layout.module_about_server_spinner_item, servers);
    adapter.setDropDownViewResource(R.layout.spinner_item);
    adapter.notifyDataSetChanged();
    spinner.setAdapter(adapter);
    spinner.setOnItemSelectedListener(new OnItemSelectedListener() {
        @Override
        public void onItemSelected(AdapterView<?> parent, View view, int index, long id) {
            mSelectedServer = servers.get(index);
        }

        @Override
        public void onNothingSelected(AdapterView<?> parent) {
            // TODO Auto-generated method stub
        }
    });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T04:54:50+00:00Added an answer on June 7, 2026 at 4:54 am

    My fix was to start from scratch and write a new ArrayAdapter and a new layout. For whatever reason this seemed to do it. Though I did not change my methodology at all.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that I use to setup objects in an array. In
I have a custom implementation of a RESTful API for a PHP application that
I have a custom windows implementation in a WPF app that hooks WM_GETMINMAXINFO as
I have an array of custom objects called array which stores a bunch of
I have a custom implementation of IDataServiceMetadataProvider / IDataServiceQueryProvider / IDataServiceUpdateProvider, put together from
I have a custom NSTextField sub-class with a custom drawRect: implementation. The text field
I have tab controller created through storyboards with a custom implementation (simple buttons and
I have a custom model binder which pulls an implementation of an interface from
I have custom classes that I currently instantiate within App.xaml as resources. I want
We have custom headers in the Silverlight DataGrid using the ContentTemplate. We've got a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.