2010-11-22 14 views

答えて

0

これを試してみてください:

ArrayList<Uri> uris = new ArrayList<Uri>(); 
    for (String file : filePaths) 
    { 
     File fileIn = new File(file); 
     Uri u = Uri.fromFile(fileIn); 
     uris.add(u); 
    } 
    intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris); // intent is your 
関連する問題