单击将数组数据传递给片段

时间:2018-12-03 11:32:29

标签: android android-layout android-linearlayout onclicklistener

我正在尝试执行以下操作。 按下LinearLayout [i],应将JSONObject [i]发送到Fragment。
但是我只在哪里按下JSONObject数组中的最后一个对象。

感谢您的帮助。

LinearLayout demp[];
        JSONArray darray; //some data
        int arry_len = darray.length();
        demp = new LinearLayout[arry_len];
    JSONObject jso[] = new JSONObject[arry_len];


        for(int i=0;i<arry_len;i++)
        {
          demp[i] = new LinearLayout(dfm.getContext());
                    ViewGroup.LayoutParams mainlay_param = new ViewGroup.LayoutParams(dpToPx(310),ViewGroup.LayoutParams.WRAP_CONTENT);
                    LinearLayout.LayoutParams mainllay_layou = new LinearLayout.LayoutParams(mainlay_param);
                    demp[i].setMinimumHeight(dpToPx(150));


        demp[i].setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {
                            Bundle args = new Bundle();

                            args.putString("JSON",jso[i].toString());
                            FragmentManager fman = getActivity().getFragmentManager();
                            ActionOrder aord = new ActionOrder();
                            aord.setArguments(args);
                            aord.show(fman,"ordact");
                        }
                });


    }

2 个答案:

答案 0 :(得分:1)

我认为您应该在单击布局时保存每个布局的当前索引以获取JSONObject数组 通过使用视图方法setTag(int i)并通过getTag()

获取值

答案 1 :(得分:1)

应该是这样

demp[i].setTag(i);
demp[i].setOnClickListener(new View.OnClickListener() {
         public void onClick(View v) {
             int position = (Integer)v.getTag(); // use this position instead of i
             args.putString("JSON",jso[position].toString());
          }
....}