时间:2021-05-20
本文实例演示如何从图库(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); } } }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Android利用Intent实现数据传递的方法。分享给大家供大家参考,具体如下:在Android开发过程中,很多人都熟悉Intent,这是个用于
本文实例讲述了Android开发实现的Intent跳转工具类。分享给大家供大家参考,具体如下:一、概述Intent的中文意思是“意图,意向”,在Android中
Android通过Intent调用系统拍照程序出现图片太小的问题解决办法Intentit=newIntent("android.media.action.IMA
本文介绍Android中Intent的各种常见作用。1Intent.ACTION_MAINString:android.intent.action.MAIN标识
本文实例讲述了Android编程使用Intent传递图片的方法。分享给大家供大家参考,具体如下:基本思路是先把bitmap转化为byte数组,用Intent传递