为了账号安全,请及时绑定邮箱和手机立即绑定

Inflater和循环不起作用

Inflater和循环不起作用

千万里不及你 2019-03-13 16:15:21
在我app上的自定义视图上有问题,我知道这个很可能是和inflaters有关系,但是我不知道怎么解决。inflater刚刚还是好的,但是它应该是做三次循环,现在却只有一次,这样在我最终布局上我只能得到一个view相关部分代码是下边这个 void populate(String strcline, String url){ lLfD = (LinearLayout)findViewById(R.id.lLfD);     try{     JSONArray a1 = new JSONArray(strcline);     for(int i = 0; i < a1.length(); i++){         JSONArray a2 =  a1.getJSONArray(i);         final String fUserId = a2.getString(0);         String userName = a2.getString(1);         String userPicture = url + a2.getString(2);         View child = getLayoutInflater().inflate(R.layout.cellevery, lLfD);         ImageView avatar = (ImageView)findViewById(R.id.cellAvatar);         downloadFile(userPicture, avatar);         TextView cellName = (TextView)findViewById(R.id.cellName);         cellName.setText(userName);         lLfD.addView(child);     }     }catch(Exception e){     }     pDialog.dismiss(); }
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 340 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信