2015-07-10 69 views

回答

0

嘗試下面的代碼,

private static final int PICKFILE_REQUEST_CODE=3; 
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); 
intent.setType("file/*"); 
startActivityForResult(intent,PICKFILE_REQUEST_CODE); 
相關問題