私はアンドロイドリストフラグメントを使用しています。以下は私のアダプタークラスです
private class HugStatusAdapter extends ArrayAdapter<Status> {
………….
public View getView(int position, View convertView, ViewGroup parent) {
………..
//set tag to view(type Status is bean class)
convertView.setTag(getItem(position));
}
public void onListItemClick(ListView l, View v, int position, long id) {
Bundle mBundle = new Bundle();
// how to get the tag (Status) and put it into mBundle
}
}
私の質問は、オブジェクト(ステータス)タイプのタグをビューに設定し、そのタグを onListItemClick() から取得する方法です?