android - How to separate data from the arraylist and display it in to the listview? -


In one of my applications, I found the table listed below:

  [android_metadata, test1, Test10 , Test1002, test2, test3, test4, test5]   

Now I want to separate all the data and display it in list view. How can this be done? I want to apply some code to it and display it in the list view in Android.

Thank you.

There is a method in the array list that gets size () and get (index number)

  1. ArrayList al = new ArrayList ();
  2. al.sze (); // to obtain the size of the array list
  3. string item 1 = al.get (index number); // To get an array of array lists

    For more detail go to this link --- & gt;

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -