android如何瀏覽並選擇圖片 音頻 視頻
來源:互聯網
上載者:User
這幾天 在學習並開發android系統的圖片瀏覽 音頻 視頻 的瀏覽 由於是第一次做android系統(java也不會)遇到了很多問題 如何瀏覽並選擇圖片 音頻 視頻也花了我好幾天的時間我把它整理處理 以便協助和我一樣的同學 也同時防備自己忘記<1> 選擇按鈕的代碼 // 選取圖片按鈕單擊事件public void click_xuanqutupian(View source) { 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); }<2> 取得選擇的項 以後 處理的地方@Overrideprotected 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); // 圖片編號 imgPath = cursor.getString(1); // 圖片檔案路徑 String imgSize = cursor.getString(2); // 圖片大小 String imgName = cursor.getString(3); // 圖片檔案名稱 fileName = imgName; fileSize = imgSize; // Log.e("uri", uri.toString()); ContentResolver cr = this.getContentResolver(); try { Bitmap bitmap = BitmapFactory.decodeStream(cr .openInputStream(uri)); ImageView imageView = (ImageView) findViewById(R.id.imview); /* 將Bitmap設定到ImageView */ imageView.setImageBitmap(bitmap); } catch (FileNotFoundException e) { // Log.e("Exception", e.getMessage(),e); } } } // 拍照的傳回值 if (requestCode == 2) { if (resultCode == RESULT_OK) { // imgPath = data.getStringExtra("filePath"); fileName = data.getStringExtra("fileName"); fileSize = data.getStringExtra("fileSize"); // 讀取拍照所得的檔案 try { Bitmap bitmap = this.getLoacalBitmap(imgPath); ImageView imageView = (ImageView) findViewById(R.id.imview); imageView.setImageBitmap(bitmap); } catch (Exception e) { // TODO: handle exception } // } } super.onActivityResult(requestCode, resultCode, data);}