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 4056968
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T14:53:38+00:00 2026-05-20T14:53:38+00:00

Can somebody in plain words explain me the usage of getViewTypeCount() and getItemViewType() methods

  • 0

Can somebody in plain words explain me the usage of getViewTypeCount() and getItemViewType() methods of ArrayAdapter?

  • 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-05-20T14:53:39+00:00Added an answer on May 20, 2026 at 2:53 pm

    These handle the case where you want different types of view for different rows. For instance, in a contacts application you may want even rows to have pictures on the left side and odd rows to have pictures on the right. In that case, you would use:

    @Override
    public int getViewTypeCount() {
        return 2;
    }
    
    @Override
    public int getItemViewType(int position) {
        return position % 2;
    }
    

    The framework uses your view type to decide which views to hand you via convertView in your getView method. In other words, in the above example, your even rows will only get recycled views with pictures on the left side to reuse, and odd rows will only get ones with pictures on the right.

    If every row in your list has the same layout, you don’t need to worry about view types. In fact, BaseAdapter.java provides a default behavior for all adapters:

    public int getItemViewType(int position) {
        return 0;
    }
    
    public int getViewTypeCount() {
        return 1;
    }
    

    This indeed provides you with the same view type for every row.

    Edit – to outline the general flow:

    1. You bind data to your AdapterView using an adapter.
    2. The AdapterView tries to display items that are visible to the user.
    3. The framework calls getItemViewType for row n, the row it is about to display.
    4. The framework checks its recycled views pool for views of row n‘s type. It doesn’t find any because no views have been recycled yet.
    5. getView is called for row n.
    6. You call getItemViewType for row n to determine what type of view you should use.
    7. You use an if/switch statement to inflate a different xml file depending on which view type is required.
    8. You fill the view with information.
    9. You return the view, exiting getView, and your row’s view is displayed to the user.

    Now, when a view is recycled by scrolling off the screen it goes into a recycled views pool that is managed by the framework. These are essentially organized by view type so that a view of the correct type is given to you in convertView parameter in your getView method:

    1. The framework again calls getItemViewType for the row it wants to display.
    2. This time, there is a view in the recycled pool of the appropriate type.
    3. The recycled view is passed to you as the convertView parameter to your getView method.
    4. You fill the recycled view with new information and return it.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm running a Django app using FastCGI and lighttpd. Can somebody explain me what
Can somebody explain me lambda expressions & what they can be used for. I
Can somebody point me to a resource that explains how to go about having
Can somebody suggest a good free tool for analyzing .Net memory dumps other than
Can somebody remember what was the command to create an empty file in MSDOS
Can somebody please give me an example of a unidirectional @OneToOne primary-key mapping in
Can somebody advise me what this code does and how can I convert it
Lutz Roeder's Reflector, that is. Its obfuscated. I still don't understand this. Can somebody
This is baffling me, maybe somebody can shine the light of education on my
I mean, I always was wondered about how the hell somebody can develop algorithms

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.