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

  • SEARCH
  • Home
  • 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 6835029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:11:01+00:00 2026-05-26T23:11:01+00:00

I have a JSON string with the multiple instances of the following Name Message

  • 0

I have a JSON string with the multiple instances of the following

  1. Name
  2. Message
  3. Timestamp
  4. Profile photo url

I want to create a ListView where each list will have the above. Which is the better Adapter I need to extend for this particular case, to create a Custom Adapter?

  • 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-26T23:11:01+00:00Added an answer on May 26, 2026 at 11:11 pm

    My assumption is that you have parsed the JSON string into an object model prior to considering either case… let’s call this class Profile.

    Strategy 1

    An ArrayAdapter is sufficient with an overriden getView(..) method that will concatenate your multiple fields together in the way you wish.

    ArrayAdapter<Profile> profileAdapter = new ArrayAdapter<Profile>(context, resource, profiles) {
       @Override
       public View getView(int position, View convertView, ViewGroup parent) {
          View v;
          // use the ViewHolder pattern here to get a reference to v, then populate 
          // its individual fields however you wish... v may be a composite view in this case
       }
    }
    

    I strongly recommend the ViewHolder pattern for potentially large lists:
    https://web.archive.org/web/20110819152518/http://www.screaming-penguin.com/node/7767

    It makes an enormous difference.

    • Advantage 1. Allows you to apply a complex layout to each item on the ListView.
    • Advantage 2. Does not require you to manipulate toString() to match your intended display (after all, keeping model and view logic separate is never a bad design practice).

    Strategy 2

    Alternatively, if the toString() method on your representative class already has a format that is acceptable for display you can use ArrayAdapter without overriding getView().

    This strategy is simpler, but forces you to smash everything into one string for display.

    ArrayAdapter<Profile> profileAdapter = new ArrayAdapter<Profile>(context, resource, profiles)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have converted my Datatable to json string use the following method... public string
I have multiple variables containing JSON as string (received from AJAX). data.output_data_1234 data.output_data_5678 I
I have a json string saved in my db. When i retrieve it from
I have one JSON that is coming in a string format. I need to
I basically have the following flow: XML -> JSON -> Spring MVC -> jsp
I have two JSON objects with the same structure and I want to concat
I need to somehow convert a single json string into multiple objects of a
How to mapping this json ?, i have been trying with multiple argument on
I have a Sinatra server that is returning multiple JSON objects from the database
I have webservice that can return data in multiple formats. For example json and

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.