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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:39:40+00:00 2026-05-23T13:39:40+00:00

Is possible store a list within application, without necessarily having a database? Otherwise, what

  • 0

Is possible store a list within application, without necessarily having a database?
Otherwise, what would be the easiest way to store a simple list?

  • 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-23T13:39:41+00:00Added an answer on May 23, 2026 at 1:39 pm

    I think it depends on the contents of the list you are working on. If your List is storing “Simple-Objects” only (like List of String List of integer or other Objects with only a few members) you can use SharedPrefenrences which are build in in Android. They need a key and a value. So if your List contains 5 Objects of – lets say Points to keep it simple – you can save them like

    SharedPreferences.Editor editor = getSharedPreferences("YourListName", MODE_PRIVATE).edit();
    for(int i = 0; i < YOUR_LIST.count() ; i++){
        Point p = YOUR_LIST.get(i);
        editor.putInt("Element" + i + " X", p.x);
        editor.putInt("Element" + i + " Y", p.y);
    }
    editor.commit();
    

    to recieve this again you could just say

    SharedPreferences prefs = getSharedPreferences("YourListName", MODE_PRIVATE);
    Map<String, ?> map = prefs.getAll();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to store erb templates in database? How?
Is it possible to list all triggers in all tables on a database? I
Is it possible to store a list of integers in a single field of
Is it possible to have list of key/value pairs within redis? or possibly a
As shown below, in Haskell, it's possible to store in a list values with
Is it possible to store encrypted connection string so it can be used from
Is it possible to store passwords on the local system (Windows XP) that can
Is it possible to store the results of a call to exec sp_executesql in
Is it possible to store a type name as a C++ variable? For example,
Is it possible to store the credentials that I use to connect to my

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.