I created an android working with default listview. Now I have 2 arrays declares as below. Please help to solve this issue. Thanks!
String[] item_index = {"1","2","3","4"};
String[] item_name = {"Bacon","Egg","Cheese","Tomato" };
String[] item_price = {"$2.50","$3.00","$2.70","$2.80" };
String[] item_barcode = {"T1","T2","T3","T4"};
I want to show the resule using **for loop** as below
1. T1-Bacon ($2.50)
2. T2-Egg ($3.00)
3. T3-Cheese ($2.70)
4. T4-Tomato ($2.80)
Thanks!