在android中,如何从图库gallary中挑选图片呢,其实很简单,步骤如下

1) 设计一个imageview,用来显示图库选出来的图片
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    ><ImageViewandroid:id="@+id/imgView"android:layout_width="fill_parent"android:layout_weight="1" android:layout_height="wrap_content"></ImageView><Button android:layout_height="wrap_content" android:text="Load Picture" android:layout_width="wrap_content" android:id="@+id/buttonLoadPicture" android:layout_weight="0" android:layout_gravity="center"></Button></LinearLayout>


2) 学习如何在按键中调出gallary,其实也就是intent了,如下
Intent i = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(i, RESULT_LOAD_IMAGE);


3) 然后在onActivityResult中对调出图库后,选定好的图片,我们要重新显示在页面的imageview中,因此代码如下:
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {    super.onActivityResult(requestCode, resultCode, data);    if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {Uri selectedImage = data.getData();String[] filePathColumn = { MediaStore.Images.Media.DATA };Cursor cursor = getContentResolver().query(selectedImage,filePathColumn, null, null, null);cursor.moveToFirst();int columnIndex = cursor.getColumnIndex(filePathColumn[0]);String picturePath = cursor.getString(columnIndex);cursor.close();ImageView imageView = (ImageView) findViewById(R.id.imgView);imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));}


其中就是Uri selectedImage = data.getData();获得了图库中的图片所有数据了。

这样一来,当用户在图库中选好图片后,就可以呈现在imageview控件中咯

更多相关文章

  1. android中从图库中选取图片
  2. Android之UI学习篇七:ImageView实现适屏和裁剪图片的功能
  3. android photoview 图片放大缩放功能 ImageView
  4. UI控件--ImageView和ImageButton
  5. Android(安卓)ImageView实现上一页,下一页图片切换
  6. 安卓第三天---ViewPager控件实现滑动切换图片
  7. Android(安卓)kotlin上传头像实现
  8. Android之UI学习篇七:ImageView实现适屏和裁剪图片的功能
  9. android中从图库中选取图片

随机推荐

  1. Android(安卓)Studio中JNI使用的一些出现
  2. Android(安卓)Studio 开关控件Switch使用
  3. Android开发学习之View测量的内置常用方
  4. Android开发之集成Google AdMob详细流程
  5. 解决报错:The versions of the Android(安
  6. Android之TabLayout常见问题解决+TabLayo
  7. java.lang.StackOverflowError
  8. Android——Mediaplay 框架调用
  9. Android(安卓)获取标题栏以及状态栏的高
  10. Android(安卓)LiveData 使用指南