读书人

Android之UI学习篇7:ImageView实现适

发布时间: 2013-02-19 11:11:40 作者: rapoo

Android之UI学习篇七:ImageView实现适屏和裁剪图片的功能

ImageView实现图片适应屏幕大小显示,和图片裁剪的功能.

实现的效果

主界面:

Android之UI学习篇7:ImageView实现适屏和裁剪图片的功能


适应屏幕:

Android之UI学习篇7:ImageView实现适屏和裁剪图片的功能


裁剪图片:

Android之UI学习篇7:ImageView实现适屏和裁剪图片的功能


显示裁剪图片到ImagView:

Android之UI学习篇7:ImageView实现适屏和裁剪图片的功能


源代码:

MainActivity.java

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <Button         android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="选择图片"    android:id="@+id/imageSelectButton"/>    <Button         android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:text="选择图片进行裁剪"    android:id="@+id/imageCutButton"/>    <!-- 用于显示裁剪后的图片 -->    <ImageView         android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:id="@+id/imageView"/></LinearLayout>



读书人网 >图形图像

热点推荐