ArrayList<HashMap<String, Object>> list = ArrayList<HashMap<String, Object>>()
ハッシュマップを含む配列リストがあり、リストの位置を取得できますand
。リスト内のオブジェクトのキー値を取得するにはどうすればよいですか。
@Override
public View getDropDownView() {
System.out.println(data.get(position)); // i am getting my List Objects
}
//以下はの出力ですdata.get(position)
{"title":"hello"}, => 0
{"title":"hello1"}, => 1
{"title":"hello2"}, => 2
{"title":"hello3"}, => 3