0

我有一个自定义库,我可以在其中选择图像并将图像的路径写入 ArrayList。自定义库是从我的 MainActivity 类中调用的,带有 onActivityResult Intent。问题是,在我的自定义画廊中,ArrayList 是正确的(当我选择 4 个图像时,我在 ArrayList 中得到 4 个带有 Imagepath 的字符串),但是当我将 ArrayList 从 Galery 传递回 MainActivity 时,我只剩下 1 个 ImagePath ArrayList ......希望你能帮助我......

在 MainActivity.java 中启动活动

Intent in = new Intent(getApplicationContext(), AndroidCustomGalleryActivity.class);
startActivityForResult(in, 500);

在自定义库中填充 ArrayList 并将 Intent 发送回 Main

final Button selectAll = (Button) findViewById(R.id.selectAll);
    selectAll.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            final int thmbnls = thumbnailsselection.length;
            //CheckBox cb = (CheckBox)findViewById(R.id.itemCheckBox);
            //int cbId = cb.getId();

            all = true;
            String allstring = String.valueOf(all);
            Log.d("BOOLONCLICK", allstring);

            for(int i =0; i<thmbnls; i++)
            {
                thumbnailsselection[i] = true;

                path = new ArrayList<String>();
                path.add(arrPath[i]);
                String test = path.toString();
                Log.d("ArrayList", test);
                pfade = path.toArray(new String[path.size()]);
            }

            Intent intent = new Intent();
            intent.putStringArrayListExtra("values", path);
            setResult(RESULT_OK, intent);
            finish();
        }
    });

在 Main 中接收 Intent:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    switch(requestCode){
    case 500:
        if(resultCode == RESULT_OK){


            pfade = (ArrayList<String>) data.getStringArrayListExtra("values");
            //Log.d("SINGLEPFADE", pfade[0]);
            //filePath = (TextView)findViewById(R.id.idTxtImagePath);
            //int bilder = pfade.size();
            String test = pfade.toString();
            //filePath.setText(bilder);
            //String test = String.valueOf(bilder);
            Log.d("AnzahlBilder", test);
        }
        break;
    }


}
4

2 回答 2

2

因为你重新创建ArrayList了循环内部

移动这一行:

path = new ArrayList<String>();

for循环之前

于 2013-09-29T13:20:16.730 回答
0

你应该在for循环之前移动代码,问题就会消失

...
path = new ArrayList<String>();
for (int i = 0; i < thmbnls; i++) {
    thumbnailsselection[i] = true;
    path = new ArrayList<String>();
    path.add(arrPath[i]);
    String test = path.toString();
    Log.d("ArrayList", test);
    pfade = path.toArray(new String[path.size()]);
}
...
于 2013-09-29T13:39:44.727 回答