Please here is my code but it’s not working as well and i am not sure where is problem ! would any can help ! i am trying with this !
List<String> array= new ArrayList<String>();
array.add("Some Text");
array.add("Some Text");
array.add("Some Text");
ListView listView=(ListView)findViewById(R.id.listViews);
ArrayAdapter<String> mHistory = new ArrayAdapter<String>(this,android.R.layout.simple_expandable_list_item_2, array);
listView.setAdapter(mHistory);
Don’t use the
simple_expandable_list_item_2layout. You should use thesimple_list_item_1instead.