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);}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.