I'm trying to do ListView
. This is my code:
List<String> list = new ArrayList<>();
String[] add1 = {"FirstName1 ","LastName1", "12-12.1993"};
String[] add2 = {"FirstName2 ","LastName2", "20-12.1993"};
// Then adds these tables to the list;
list.add(add1[0] + add1[1] + add1[2]);
list.add(add2[0] + add2[1] + add2[2]);
//I create a ListView adapter
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_2, list);
Now, My ListView
looks like this: "FirstName1 LastName1 12-12.1993" etc.
I would like to looks like this: "FirstName1 LastName1".
I could not deleted the date, because it need to be sent to SecondActivity
.