Android选择本地视频文件
程序员文章站
2022-06-04 15:30:55
...
选择视频文件:
private void chooseVideo() { Intent intent = new Intent(); /* 开启Pictures画面Type设定为image */ //intent.setType("image/*"); // intent.setType("audio/*"); //选择音频 intent.setType("video/*"); //选择视频 (mp4 3gp 是android支持的视频格式) // intent.setType("video/*;image/*");//同时选择视频和图片 /* 使用Intent.ACTION_GET_CONTENT这个Action */ intent.setAction(Intent.ACTION_GET_CONTENT); /* 取得相片后返回本画面 */ startActivityForResult(intent, 1); }
选择成功后回调:
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { // 选取图片的返回值 if (requestCode == 1) { // if (resultCode == RESULT_OK) { Uri uri = data.getData(); Cursor cursor = getContentResolver().query(uri, null, null, null, null); cursor.moveToFirst(); // String imgNo = cursor.getString(0); // 图片编号 String v_path = cursor.getString(1); // 图片文件路径 String v_size = cursor.getString(2); // 图片大小 String v_name = cursor.getString(3); // 图片文件名 LogUtil.e("v_path="+v_path); LogUtil.e("v_size="+v_size); LogUtil.e("v_name="+v_name); } } super.onActivityResult(requestCode, resultCode, data); }
注:Android系统仅支持MP4和3gp格式视频文件
上一篇: xshell 配色方案
下一篇: Android选择本地视频文件