I have this code of arraylist:
public List<String> column = new ArrayList<String>();
public List<String> price = new ArrayList<String>();
can you teach me how to display all the elements of the arraylist to a two column listview? also i want to display it through a new Intent.
else if(v.getId()==R.id.btnFinal){
Intent intent = new Intent(main.this, Finalize.class);
startActivity(intent);
}
I want my list view to be diplayed on the Finalize class. please help me.
Activities3. Add your code you wrote here if there's something wrong.