Android實(shí)現(xiàn)底部圖片選擇Dialog
業(yè)務(wù)需要選擇彈出對(duì)話框,然后點(diǎn)擊選擇圖片。網(wǎng)上已經(jīng)有了很多,不過感覺寫的有點(diǎn)亂。自己這里總結(jié)一下,有需要開發(fā)者可以按照如下步驟直接使用即可。
1.效果圖如下
點(diǎn)擊選擇照相后,彈出如下選擇對(duì)話框:
2. Dialog實(shí)現(xiàn)
布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <TextView android:id="@+id/abroad_takephoto" android:layout_width="match_parent" android:layout_height="@dimen/abroad_dialog_item_hight" android:background="@drawable/abroad_dialogitem_selector" android:gravity="center" android:text="@string/abroad_photo" android:textColor="@color/abroad_dialog_textcolor" android:textSize="@dimen/abroad_dialog_textsize" /> <View android:layout_width="match_parent" android:layout_height="@dimen/abroad_dialog_view_hight" android:background="@color/abroad_dialog_view_bg" /> <TextView android:id="@+id/abroad_choosephoto" android:layout_width="match_parent" android:layout_height="@dimen/abroad_dialog_item_hight" android:background="@drawable/abroad_dialogitem_selector" android:gravity="center" android:text="@string/abroad_choosephotp" android:textColor="@color/abroad_dialog_textcolor" android:textSize="@dimen/abroad_dialog_textsize" /> <TextView android:id="@+id/abroad_choose_cancel" android:layout_width="match_parent" android:layout_height="@dimen/abroad_dialog_item_hight" android:layout_marginTop="@dimen/abroad_feedback_top" android:background="@drawable/abroad_dialogitem_selector" android:gravity="center" android:text="@string/abroad_cancel" android:textColor="@color/abroad_dialog_textcolor" android:textSize="@dimen/abroad_dialog_textsize" /> </LinearLayout>
上面的高度和顏色,文字:
<color name="abroad_dialog_item">#ffffff</color> <color name="abroad_dialog_item_press">#dfdfdf</color> <color name="abroad_dialog_textcolor">#222222</color> <color name="abroad_dialog_view_bg">#cccccc</color> <dimen name="abroad_dialog_item_hight">45dp</dimen> <dimen name="abroad_feedback_top">8dp</dimen> <dimen name="abroad_dialog_textsize">18sp</dimen> <string name="abroad_photo">拍照</string> <string name="abroad_choosephotp">從相冊(cè)選擇</string> <string name="abroad_cancel">取消</string>
控件selector
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@color/abroad_dialog_item_press" android:state_pressed="true" /> <item android:drawable="@color/abroad_dialog_item" /> </selector>
Dialog 創(chuàng)建
在style文件里面添加主題及dialog彈出動(dòng)畫
<style name="ActionSheetDialogStyle" parent="@android:style/Theme.Dialog"> <!-- 背景透明 --> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowContentOverlay">@null</item> <!-- 浮于Activity之上 --> <item name="android:windowIsFloating">true</item> <!-- 邊框 --> <item name="android:windowFrame">@null</item> <!-- Dialog以外的區(qū)域模糊效果 --> <item name="android:backgroundDimEnabled">true</item> <!-- 無標(biāo)題 --> <item name="android:windowNoTitle">true</item> <!-- 半透明 --> <item name="android:windowIsTranslucent">true</item> <!-- Dialog進(jìn)入及退出動(dòng)畫 --> <item name="android:windowAnimationStyle">@style/style_inner_map_dialog_animation</item> <style name="style_inner_map_dialog_animation"> <!--dialog的進(jìn)出動(dòng)畫--> <item name="android:windowEnterAnimation">@anim/scale_alpha_to_enter</item> <item name="android:windowExitAnimation">@anim/scale_alpha_to_exit</item> </style>
dialog創(chuàng)建
private TextView cancel; private TextView takePhoto; private TextView choosePhoto; private Dialog dialog; public void chosePhotoDialog() { dialog = new Dialog(this, R.style.ActionSheetDialogStyle); inflate = LayoutInflater.from(this).inflate(R.layout.view_abroad_choosephoto_dialog, null); choosePhoto = (TextView) inflate.findViewById(R.id.abroad_choosephoto); takePhoto = (TextView) inflate.findViewById(R.id.abroad_takephoto); cancel = (TextView) inflate.findViewById(R.id.abroad_choose_cancel); choosePhoto.setOnClickListener(this); takePhoto.setOnClickListener(this); cancel.setOnClickListener(this); dialog.setContentView(inflate); Window window = dialog.getWindow(); if (dialog != null && window != null) { window.getDecorView().setPadding(0, 0, 0, 0); WindowManager.LayoutParams attr = window.getAttributes(); if (attr != null) { attr.height = ViewGroup.LayoutParams.WRAP_CONTENT; attr.width = ViewGroup.LayoutParams.MATCH_PARENT; attr.gravity = Gravity.BOTTOM;//設(shè)置dialog 在布局中的位置 window.setAttributes(attr); } } dialog.show(); }
Dialig 點(diǎn)擊事件
@Override public void onClick(View view) { switch (view.getId()) { case R.id.abroad_choosephoto: pickAlbum(); break; case R.id.abroad_takephoto: takePhotos(); break; case R.id.abroad_choose_cancel: dialog.dismiss(); } dialog.dismiss(); }
3. 選擇圖片
定義事件類型
private static final int PHOTO_REQUEST_CAREMA = 1;// 拍照 private static final int PHOTO_REQUEST_GALLERY = 2;// 從相冊(cè)中選擇 private static final int PHOTO_REQUEST_CUT = 3;// 結(jié)果
從相冊(cè)選取圖片
/*** * 進(jìn)入系統(tǒng)相冊(cè)界面 */ private void pickAlbum() { Intent intent = new Intent(Intent.ACTION_PICK, null); intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "image/*"); startActivityForResult(intent, PHOTO_REQUEST_GALLERY); }
手機(jī)拍照后選取圖片
protected void takePhotos() { Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, PHOTO_REQUEST_CAREMA); }
圖片選擇后,最終都會(huì)把數(shù)據(jù)返回到onActivityResult()方法里面,所以我們需要在activity里面重寫此方法
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { switch (requestCode) { case PHOTO_REQUEST_GALLERY: if (data != null) { Uri uri = handleImage(data); cropPhoto(uri); } break; case PHOTO_REQUEST_CAREMA: if (resultCode == RESULT_CANCELED) { return; } if (data != null) { Bitmap photo = data.getParcelableExtra("data"); //將Bitmap轉(zhuǎn)化為uri Uri uri = saveBitmap(photo, "temp"); //啟動(dòng)圖像裁剪 cropPhoto(uri); } break; case PHOTO_REQUEST_CUT: LogUtil.d("abroadUseActivity2", "裁剪"); // 從剪切圖片返回的數(shù)據(jù) if (data == null) { return; } bitmap = data.getParcelableExtra("data"); if (bitmap == null) {// return; } // TODO 此處我們便獲得了bitmap對(duì)象,做其他操作 bitmap.recycle(); break; default: break; } super.onActivityResult(requestCode, resultCode, data); }
裁剪的方法
private void cropPhoto(Uri uri) { // 裁剪圖片意圖 Intent intent = new Intent("com.android.camera.action.CROP"); intent.setDataAndType(uri, "image/*"); intent.putExtra("crop", "true"); // 裁剪框的比例,1:1 intent.putExtra("aspectX", 1); intent.putExtra("aspectY", 1); // 裁剪后輸出圖片的尺寸大小 intent.putExtra("outputX", 250); intent.putExtra("outputY", 250); intent.putExtra("outputFormat", "JPEG");// 圖片格式 intent.putExtra("noFaceDetection", true);// 取消人臉識(shí)別 intent.putExtra("return-data", true); // 開啟一個(gè)帶有返回值的Activity,請(qǐng)求碼為PHOTO_REQUEST_CUT startActivityForResult(intent, PHOTO_REQUEST_CUT); }
拍照后需要先把數(shù)據(jù)保存一個(gè)臨時(shí)的文件,然后再獲取文件,才能裁剪
/** * 把bitmap保存到本地 * * @param bm bitmap * @param dirPath 路徑 * @return 文件的uri */ private Uri saveBitmap(Bitmap bm, String dirPath) { //新建文件夾用于存放裁剪后的圖片 File tmpDir = new File(Environment.getExternalStorageDirectory() + "/" + dirPath); if (!tmpDir.exists()) { tmpDir.mkdir(); } //新建文件存儲(chǔ)裁剪后的圖片 File img = new File(tmpDir.getAbsolutePath() + "/feedback.png"); try { //打開文件輸出流 FileOutputStream fos = new FileOutputStream(img); //將bitmap壓縮后寫入輸出流(參數(shù)依次為圖片格式、圖片質(zhì)量和輸出流) bm.compress(Bitmap.CompressFormat.JPEG, 100, fos); fos.flush(); fos.close(); //返回File類型的Uri return Uri.fromFile(img); } catch (FileNotFoundException e) { e.printStackTrace(); return null; } catch (IOException e) { e.printStackTrace(); return null; } }
4.注意事項(xiàng)
本來選擇后不打算裁剪,但是在小米6等手機(jī)上,不裁剪容易崩潰,而裁剪的另一個(gè)好處就是壓縮圖片
在我們獲取bitmap后,可以在那里做一些業(yè)務(wù)操作,但是一定要記得把bitmap文件回收,不然容易導(dǎo)致內(nèi)存泄漏
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android仿Boss直聘文本日期混合滾輪選擇器示例
- Android 實(shí)現(xiàn)IOS 滾輪選擇控件的實(shí)例(源碼下載)
- Android滾輪選擇時(shí)間控件使用詳解
- Android高仿IOS 滾輪選擇控件
- 輕松實(shí)現(xiàn)可擴(kuò)展自定義的Android滾輪時(shí)間選擇控件
- Android 實(shí)現(xiàn)IOS選擇拍照相冊(cè)底部彈出的實(shí)例
- Android 仿京東商城底部布局的選擇效果(Selector 選擇器的實(shí)現(xiàn))
- Android開發(fā)中實(shí)現(xiàn)IOS風(fēng)格底部選擇器(支持時(shí)間 日期 自定義)
- Android實(shí)現(xiàn)底部滾輪式選擇彈跳框
相關(guān)文章
Android中RecyclerView實(shí)現(xiàn)橫向滑動(dòng)代碼
這篇文章主要介紹了Android中RecyclerView實(shí)現(xiàn)橫向滑動(dòng)代碼的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-07-075步教你快速寫一個(gè)android Router路由框架
本篇文章主要介紹了5步教你快速寫一個(gè)Router路由框架(詳細(xì)步驟),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-11-11Android實(shí)現(xiàn)listview滑動(dòng)時(shí)漸隱漸現(xiàn)頂部欄實(shí)例代碼
android中實(shí)現(xiàn)listview滑動(dòng)時(shí)漸隱漸現(xiàn)頂部欄只是在獲取listview的滑動(dòng)距離上可能沒法直接獲取,需要?jiǎng)討B(tài)的去計(jì)算。感興趣的朋友一起看看吧2016-10-10Android Paging庫(kù)使用詳解(小結(jié))
這篇文章主要介紹了Android Paging庫(kù)使用詳解(小結(jié)),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-07-07Android結(jié)合kotlin使用coroutine的方法實(shí)例
這篇文章主要給大家介紹了關(guān)于Android結(jié)合kotlin使用coroutine的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-12-12