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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:47:14+00:00 2026-05-28T02:47:14+00:00

I have an Activity where names are inputed via a EditText box and then

  • 0

I have an Activity where names are inputed via a EditText box and then they get saved into an Array and then displayed in a ListView where there is also a Button that will appear where they can remove it.

Once the correct names have been added they are then passed to the next Activity by a Button Intent to populate a String. On the next Activity there is a button where they can go back to the previous Activity to add more names or remove.

The problem is when they go back to the previous Activity the Array is empty so I need a way to save the Array even when the Activity has been left.

ArrayList<String> playerList = new ArrayList<String>();

Button to add to the Array is below:

Button confirm = (Button) findViewById(R.id.add);
confirm.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        EditText playername = (EditText) findViewById(R.id.userinput);
        playerList.add(playername.getText().toString());
        adapter.notifyDataSetChanged();
        playername.setText("");
    }
});
  • 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-28T02:47:15+00:00Added an answer on May 28, 2026 at 2:47 am

    Use Bundle to save your array on onSaveInstanceState(Bundle savedInstanceState) of activity

    1. http://developer.android.com/reference/android/os/Bundle.html
    2. Saving Android Activity state using Save Instance State

    Update

        @Override
    public void onSaveInstanceState(Bundle outState) {
      // Save UI state changes to the savedInstanceState.
      // This bundle will be passed to onCreate if the process is
      // killed and restarted.
        outState.putStringArrayList("Playlist", playerList );
    
       super.onSaveInstanceState(outState);
    
        }
    

    Now to take value

        @Override
    public void onRestoreInstanceState(Bundle savedInstanceState) {
      super.onRestoreInstanceState(savedInstanceState);
      // Restore UI state from the savedInstanceState.
      // This bundle has also been passed to onCreate.
        playerList = savedInstanceState.getStringArrayList("Playlist");
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a EditText box so a user can input names and then click
I have an Activity in Android, with two elements: EditText ListView When my Activity
I have a EditText box which is used to input names. Once the names
I have Activity with ListView inside it and in the onCreate method of the
I have an activity that contains several user editable items (an EditText field, RatingBar,
I have an Activity which lets the user input names and the save them.
I am trying to get to the point where I have a Input (EditText)
I have a Activity that pulls an Array from the previous Activity . I
i have the following code: J = fun()->mnesia:clear_table(names) end. mnesia:activity(transaction, J, [], mnesia_frag). and
I have a service bound to an activity. The activity is a ListView of

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.