Android利用Intent实现读取图片操作
更新时间:2016年06月15日 15:10:29 作者:rainmj
这篇文章主要为大家详细介绍了Android利用Intent实现读取图片操作的相关资料,感兴趣的小伙伴们可以参考一下
本文实例演示如何从图库(Gallery)中读取图像并用ImageView将它显示出来,供大家参考,具体内容如下
运行本示例前,需要先利用相机模拟拍摄一些图片到图库中。
1、运行截图
2、主要设计步骤
(1)添加ch1203_ReadGallery.axml
<?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"> <Button android:id="@+id/btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="30dp" android:layout_gravity="center" android:text="从图库中挑选一幅图片" /> <TextView android:text="你挑选的图片为:" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/textView1" android:layout_gravity="center" android:layout_margin="30dp" /> <ImageView android:id="@+id/myImageView" android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
(2)添加ch1203ReadGallery.cs
using Android.App; using Android.Content; using Android.OS; using Android.Runtime; using Android.Widget; namespace MyDemos.SrcDemos { [Activity(Label = "【例12-3】读取图库图片")] public class ch1203ReadGallery : Activity { protected override void OnCreate(Bundle savedInstanceState) { base.OnCreate(savedInstanceState); SetContentView(Resource.Layout.ch1203_ReadGallery); var btn1 = FindViewById<Button>(Resource.Id.btn1); btn1.Click += delegate { var imageIntent = new Intent(); imageIntent.SetType("image/*"); imageIntent.SetAction(Intent.ActionGetContent); StartActivityForResult( Intent.CreateChooser(imageIntent, "选择的图片:"), 0); }; } protected override void OnActivityResult(int requestCode, [GeneratedEnum] Result resultCode, Intent data) { base.OnActivityResult(requestCode, resultCode, data); if (resultCode == Result.Ok) { var imageView = FindViewById<ImageView>(Resource.Id.myImageView); imageView.SetImageURI(data.Data); } } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Android Intent传递对象的两种方法(Serializable,Parcelable)详细介绍
- Android基于Intent实现Activity之间数据传递的方法
- Android 通过Intent使用Bundle传递对象详细介绍
- 在Android中通过Intent使用Bundle传递对象的使用方法
- Android中Intent传递对象的3种方式详解
- 详解Android中Intent传递对象给Activity的方法
- Android开发之利用Intent实现数据传递的方法
- android中intent传递list或者对象的方法
- Android系列之Intent传递对象的几种实例方法
- Android 使用Intent传递数据的实现思路与代码
- Android编程使用Intent传递图片的方法详解
相关文章
android ListView结合xutils3仿微信实现下拉加载更多
本篇文章主要介绍了android ListView结合xutils3仿微信实现下拉加载更多,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-11-11android图像绘制(七)ClipRect局部绘图/切割原图绘制总结
这几天开始学游戏地图制作,今天小小的总结一下Canvas的clipRect()接口的使用,接下来介绍ClipRect局部绘图/切割原图绘制感兴趣的朋友可以了解下2013-01-01Android AutoWrapTextView中英文排版问题的解决方法
这篇文章主要给大家介绍了关于Android AutoWrapTextView中英文排版问题的解决方法,文中介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面来一起看看吧。2017-05-05Android编程实现加载等待ProgressDialog的方法
这篇文章主要介绍了Android编程实现加载等待ProgressDialog的方法,实例分析了Android中加载等待类ProgressDialog的具体使用方法,需要的朋友可以参考下2015-12-12
最新评论