私はこのコードを持っています:
Serializable newList;
newList=extras.getSerializable("list");
Iterator<Element> itr =( (List<Element>) newList).iterator();
Element froga=null;
while (itr.hasNext()) {
Object element = itr.next();
Log.i("***Selected Tab", "Im currently in tab with index::" + element);
}
リストは次のようになります。 HashMap < String, String >
これを出力しています:
Im currently in tab with index::{L=blablabla, T=blablaba}
Lを選択するにはどうすればよいですか? インデックスのようなもので特定の要素を選択できますか?
本当にありがとうございました!