2010-11-22 83 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