I Have a two dimensional string array,
I want to create a 3 column list-view, that display data from the string array, it should have the same number of rows that the size of the string array.
This is my string array:
String[][] data = {
{"001", "JOHN ","1001" },
{"002", "SIBIN", "1002" },
{"003", "TOM ", "1003" },
{"004", "FREEDY", "1004" }
};
I want to display it in a Listview like
ID NAME VACANCY ID
001 JOHN 1001
002 SIBIN 1002
003 TOM 1003
004 FREEDY 1004
Also when I click a list-view item, it redirect to another page with the listview id
How is this possible? I am new in the android development, I know only the basics, and I only know how to create listview.