I am trying to use an ArrayAdapter with multiple arrays. This i a bit hard to explain for me.
What i have are a few Arrays which should be written in one TextView each in my ListView.
like -> Array1 contains all the dates for tv1, Array2 all the titles for tv2 and so on.
ArrayAdapter<String> adapter =
new ArrayAdapter<String>(getActivity(),
R.layout.listview_layout, R.id.lv_date,
dates);
so, making an array for all the TextViews shouldn't be that hard, but how could I set whole 'arrays' to the TextViews?