protected void onPostExecute(Exception result) {
super.onPostExecute(result);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(MainActivity.this ,android.R.layout.simple_list_item_2,titles);
//I want also to give the dates beside titles but it is giving me error
lvRss.setAdapter(adapter);
progressDialog.dismiss();
}
I used android.R.layout.simple_list_item_2
to take two textViews but how to initialize the second one?