ここに私のコードがありますが、それもうまく機能しておらず、どこに問題があるのかわかりません!誰もが助けることができます!私はこれで試しています!
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);