无法将正确的 id 放入片段



我需要通过行点击ex来转移从JSON实体解析的id的值。(列表视图中的第一个项目的id为861(从JSON中获得)第二个项目为823,我需要将正确的id转移到FrafmentB

这就是我获取id的方式:

List<NameValuePair> param = new ArrayList<NameValuePair>();
 JSONObject json = jsonParser.makeHttpRequest(URL_MESSAGES, "GET", param, token);
 JSONObject data = json.getJSONObject("data");
 JSONArray messages = data.getJSONArray("messages");
for(int i=0;i<messages.length();i++){
JSONObject c = messages.getJSONObject(i);
read_status=c.getString(TAG_READ_STATUS);
if(read_status.equals("unread")){
msgID=c.getInt("id");
Log.d("BUNDLE ID", String.valueOf(msgID));
title = c.getString(TAG_TITLE);
Log.d("TITLE",title);
time=c.getString(TAG_TIME);
HashMap<String, String> map = new HashMap<String, String>();
map.put(TAG_TITLE, title);
map.put(TAG_TIME, time);
mailList.add(map);

这是我将id转移到片段的方式

@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
FragmentManager fm=getFragmentManager();
FragmentTransaction transaction=fm.beginTransaction();
bundle.putInt("message", msgID );
MessageView ViewMessages=new MessageView();
ViewMessages.setArguments(bundle);
transaction.replace(R.id.fragmentInnerMail,ViewMessages);
transaction.commit();
}

当用户单击行中的项时,只有最后一个id(通过asyncTask解析)进入fragmentB,而不是基于listview中的行的id,我无法弄清楚。

适配器

  @Override
        protected void onPostExecute(String s) {
            ListView list = (ListView) getActivity().findViewById(R.id.list);
            ListAdapter adapter = new SimpleAdapter(
                    getActivity(), mailList,
                    R.layout.mail_row, new String[] { TAG_TITLE,
                    TAG_TIME}, new int[] {
                    R.id.mTitle,R.id.mDate});
            list.setAdapter(adapter);

            pDialog.dismiss();
        }

您需要将id添加到您的HashMap

map.put(TAG_ID, msgID);

onItemClick,你可以通过这种方式获得你按下的项目:

HashMap<String, String> itemAtPostion =  parent.getItemAtPosition(position);

然后

   bundle.putInt("message", itemAtPostion.get(TAG_ID) ); 

相关内容

  • 没有找到相关文章

最新更新