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)
- ArrayList al = new ArrayList ();
- al.sze (); // to obtain the size of the array list
- string item 1 = al.get (index number); // To get an array of array lists
For more detail go to this link --- & gt;
Comments
Post a Comment