Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view all items in arraylist java?

In my android application I want to be able to add a string value to a static arraylist I have declared on my main android activity. The logic goes like this:

1) When you click a button and an activity starts. On the oncreate method I want to save the name of the class that is the current activity to a string value. For example:

String className = "com.lunchlist.demo";

After this value is assigned I want to immediately add this string value to a Static ArrayList I have declared in my main android activity (meaning first android activity that starts) After adding the value

I did something like this:

static String List<String> members = new ArrayList<String>();

This is declared in my main activity. Now when I click a button to start another activity I use this to add the string classname for that current activity to my arraylist in my oncreate method:

  String className = "com.lunchlist.demo" 
  members.add(className);

My question is now, would this add the string value to my arraylist and save it for later use? For example If I click three different buttons this will add three different className values to the arraylist. Would this then store a string value that would hold three different string values for my members arraylist? How would I check each item in my arraylist to see if the values are being added when a new activity is started?

I'm asking this because I will need to retrieve this and store these values using shared preferences and later retrieve them and starting an intent using the string value which is the class to start the activity. I got the activity to start with a string value of a class name I'm just having trouble storing them.

like image 292
K D Avatar asked Jul 15 '12 17:07

K D


People also ask

How do I see all elements in an ArrayList?

We can check whether an element exists in ArrayList in java in two ways: Using contains() method. Using indexOf() method.

How do you check if all items in a list are in another list Java?

The containsAll() method of List interface in Java is used to check if this List contains all of the elements in the specified Collection.

How do I print the contents of an ArrayList?

These are the top three ways to print an ArrayList in Java: Using a for loop. Using a println command. Using the toString() implementation.


1 Answers

Answering to all of your questions:

would this add the string value to my arraylist and save it for later use?

Yes. Your code seems perfect to do it with no problems.

For example If I click three different buttons this will add three different className values to the arraylist. Would this then store a string value that would hold three different string values for my members arraylist?

If you tell to your button's onClickListener to add a string to the members ArrayList then it will be done and no matter if you already had previously added that member to the ArrayList because array lists don't care if there is duplicated data or not.

How would I check each item in my arraylist to see if the values are being added when a new activity is started?

You have to iterate your array list with a for or a for-each cicle and then print that member name as a log entry.

  • For-each cicle

    for (String member : members){
        Log.i("Member name: ", member);
    }
    
  • Simple For cicle

    int listSize = members.size();
    
    for (int i = 0; i<listSize; i++){
        Log.i("Member name: ", members.get(i));
    }
    

If you try to print/ log a value which index is out of range, i.e., i < 0 || i >= listSize then a IndexOutOfBoundsException will be thrown and crash your app.

like image 129
yugidroid Avatar answered Nov 03 '22 19:11

yugidroid