android獲得圖片、音頻、視頻

來源:互聯網
上載者:User

[size=medium][/size]這幾天 在學習並開發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.ACTION_GET_CONTENT這個Action */
  intent.setAction(Intent.ACTION_GET_CONTENT);
  /* 取得相片後返回本畫面 */
  startActivityForResult(intent, 1);

  }<2> 取得選擇的項 以後 處理的地方
Java代碼 
@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); // 圖片編號 
    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); 
     // imageView.setImageURI(uri);// 可以直接顯示圖片;  
    } 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); 
 
 
 
Uri介紹: 
Uri代表了要操作的資料,Uri主要包含了兩部分資訊:1》需要操作的ContentProvider ,2》對ContentProvider中的什麼資料進行操作,一個Uri由以下幾部分組成:  

ContentProvider(內容提供者)的scheme已經由Android所規定, scheme為:content://  
主機名稱(或叫Authority)用於唯一標識這個ContentProvider,外部調用者可以根據這個標識來找到它。  
路徑(path)可以用來表示我們要操作的資料,路徑的構建應根據業務而定,如下:  
要操作person表中id為10的記錄,可以構建這樣的路徑:/person/10  
要操作person表中id為10的記錄的name欄位, person/10/name  
要操作person表中的所有記錄,可以構建這樣的路徑:/person  
要操作xxx表中的記錄,可以構建這樣的路徑:/xxx  
當然要操作的資料不一定來自資料庫,也可以是檔案等他儲存方式,如下:  
要操作xml檔案中person節點下的name節點,可以構建這樣的路徑:/person/name  
如果要把一個字串轉換成Uri,可以使用Uri類中的parse()方法,如下:  
Uri uri = Uri.parse("content://cn.itcast.provider.personprovider/person")  
 
 作者“dennies211”
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.