您好,登錄后才能下訂單哦!
Android 打開相冊選擇單張圖片實現代碼
以下就是如何在應用中打開圖庫并選擇一張圖片進行應用,代碼很簡單,注釋很詳細。
實現代碼:
btn8.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { /*在Activity Action里面有一個“ACTION_GET_CONTENT”字符串常量, // 該常量讓用戶選擇特定類型的數據,并返回該數據的URI.我們利用該常量, //然后設置類型為“image/*”,就可獲得Android手機內的所有image。*/ Intent intent = new Intent(); /* 開啟Pictures畫面Type設定為image */ intent.setType("image/*"); /* 使用Intent.ACTION_GET_CONTENT這個Action */ intent.setAction(Intent.ACTION_GET_CONTENT); /* 取得相片后返回本畫面 */ startActivityForResult(intent, 1); //Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); // startActivityForResult(intent, RESULT); } }); @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode == RESULT_OK) { Uri uri = data.getData(); Log.e("uri", uri.toString()); ContentResolver cr = this.getContentResolver(); try { Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri)); /* 將Bitmap設定到ImageView */ iv8.setImageBitmap(bitmap); } catch (FileNotFoundException e) { Log.e("Exception", e.getMessage(), e); } } super.onActivityResult(requestCode, resultCode, data); }
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。