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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:13:49+00:00 2026-05-25T10:13:49+00:00

The current app that I’m creating is using gson to parse and populate a

  • 0

The current app that I’m creating is using gson to parse and populate a listview via a remotely hosted json file. I have an options menu inside my app that I would like to use that will allow users to select/deselect items so that they will either show (if selected) or not show (if deselected) inside the listview that is shown on screen via the remote json file.

My question is, how do I go about implementing this function? Can I simply use a shared preferences? Is it even possible to hide certain list items while using a json file?

I’ve been having a lot of trouble trying to figure this out so any and all help will be greatly appreciated.

  • 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-25T10:13:49+00:00Added an answer on May 25, 2026 at 10:13 am

    Using a custom ArrayAdapter you could “choose” what is displayed according to some prefs (I would do the filtering on the list of objects you pass to the constructor).
    Something like that:

    public class DbAdapter extends ArrayAdapter<Db> {
        private SharedPreferences preferences;
        int resource;
        String response;
        Context context;
        //Initialize adapter
        public DbAdapter(Context context, int resource, List<Database> items) {
            super(context, resource);
            this.preferences = PreferenceManager.getDefaultSharedPreferences(context);
            filter(items);
            this.resource=resource;
        }
    
        private final void filter(final List<Database> input) {
            final String pref = this.preferences.getString("some_key", "");
            for (Database db : input) {
                if (!pref.contains(db.dbid + ",")) {
                    this.add(db);
                } 
            }
        }
    
        @Override
        public View getView(int position, View convertView, ViewGroup parent)
        {
            LinearLayout DbView;
            //Get the current Database object
            Database db = this.getItem(position);
    // ...
    

    This assumes that the preference “some_key” contains a comma separated list of dbId (like 1,5,12,)

    NB not tested

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

Sidebar

Related Questions

In our current WinForms app, we are displaying millions of records in ListView, using
I have a current Android app that uses i18n via resources. res/values-es/strings.xml and so
I am creating an app that needs to know the current status of dynamically
I'm trying to build an app that shows the current user position using an
I have an app that display's the current time when a page opens. I
Does any one know if its possible to animate app.current.mainwindow.width so that you get
For my current app I'm using the NSKeyedArchiver approach to persist my objects to
I am writing an app that requires the user's current location (lastknownlocation won't be
i'm trying to code an app that displays the current device position on a
I would like to write an app that will put the current call on

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.