2015-07-10 68 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); 
相关问题