Android控件之ImageView用法实例分析

 更新时间:2015年09月12日 11:15:32   作者:Ruthless  
这篇文章主要介绍了Android控件之ImageView用法,以实例形式较为详细的分析了ImageView控件用于显示图片的使用方法,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了Android控件之ImageView用法。分享给大家供大家参考。具体如下:

ImageView控件是一个图片控件,负责显示图片。
以下模拟手机图片查看器

目录结构:

main.xml布局文件:

<?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">
 <ImageView android:id="@+id/imageView"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal"
  android:src="@drawable/p1"/>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal">
  <Button android:id="@+id/previous"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="上一张"
   android:layout_gravity="center_horizontal"/>
  <Button android:id="@+id/alpha_plus"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="透明度增加"
   android:layout_gravity="center_horizontal"/>
  <Button android:id="@+id/alpha_minus"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="透明度减少"
   android:layout_gravity="center_horizontal"/>
  <Button android:id="@+id/next"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="下一张"
   android:layout_gravity="center_horizontal"/>
 </LinearLayout>
</LinearLayout>

ImageViewActivity类:

package com.ljq.iv;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class ImageViewActivity extends Activity {
 private ImageView imageView=null;
 private Button previous=null;//上一张
 private Button next=null;//下一张
 private Button alpha_plus=null;//透明度增加
 private Button alpha_minus=null;//透明度减少
 private int currentImgId=0;//记录当前ImageView显示的图片id
 private int alpha=255;//记录ImageView的透明度
 int [] imgId = {   //ImageView显示的图片数组
   R.drawable.p1, 
   R.drawable.p2,
   R.drawable.p3,
   R.drawable.p4,
   R.drawable.p5,
   R.drawable.p6,
   R.drawable.p7,
   R.drawable.p8,
  };
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  imageView=(ImageView)findViewById(R.id.imageView);
  previous=(Button)findViewById(R.id.previous);
  next=(Button)findViewById(R.id.next);
  alpha_plus=(Button)findViewById(R.id.alpha_plus);
  alpha_minus=(Button)findViewById(R.id.alpha_minus);
  previous.setOnClickListener(listener);
  next.setOnClickListener(listener);
  alpha_plus.setOnClickListener(listener);
  alpha_minus.setOnClickListener(listener);
 }
 private View.OnClickListener listener = new View.OnClickListener(){
  public void onClick(View v) {
   if(v==previous){
    currentImgId=(currentImgId-1+imgId.length)%imgId.length;
    imageView.setImageResource(imgId[currentImgId]);
   }
   if(v==next){
    currentImgId=(currentImgId+1)%imgId.length;
    imageView.setImageResource(imgId[currentImgId]);
   }
   if(v==alpha_plus){
    alpha+=10;
    if(alpha>255){
     alpha=255;
    }
    imageView.setAlpha(alpha);
   }
   if(v==alpha_minus){
    alpha-=10;
    if(alpha<0){
     alpha=0;
    }
    imageView.setAlpha(alpha);
   }
  }
 };
}

运行结果:

希望本文所述对大家的Android程序设计有所帮助。

相关文章

  • Android自定义PopupWindow小案例

    Android自定义PopupWindow小案例

    这篇文章主要为大家详细介绍了Android自定义PopupWindow小案例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-11-11
  • flutter封装点击菜单工具栏组件checkBox多选版

    flutter封装点击菜单工具栏组件checkBox多选版

    这篇文章主要为大家介绍了flutter封装一个点击菜单工具栏组件,checkBox多选版的示例示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-05-05
  • Android实现颜色选取圆盘

    Android实现颜色选取圆盘

    这篇文章主要为大家详细介绍了Android实现颜色选取圆盘,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • Android的异步任务AsyncTask详解

    Android的异步任务AsyncTask详解

    本文给大家介绍的是Android的异步任务AsyncTask,在Android中实现异步任务机制有两种方式,Handler和AsyncTask。今天我们先来主要谈下ASYNCTASK。
    2015-07-07
  • Android中Glide加载圆形图片和圆角图片实例代码

    Android中Glide加载圆形图片和圆角图片实例代码

    本篇文章主要介绍了Android中Glide加载圆形图片和圆角图片实例代码,具体一定的参考价值,有兴趣的可以了解一下
    2017-05-05
  • Android闹钟设置的解决方案

    Android闹钟设置的解决方案

    这篇文章主要为大家详细介绍了Android闹钟设置的解决方案,避免开发Android设置闹钟的坑,感兴趣的小伙伴们可以参考一下
    2016-07-07
  • Android用于校验集合参数的小封装示例

    Android用于校验集合参数的小封装示例

    本篇文章主要介绍了Android-用于校验集合参数的小封装示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-10-10
  • 详解Flutter中视频播放器插件的使用教程

    详解Flutter中视频播放器插件的使用教程

    视频播放器插件是可用于Flutter的常用插件之一,在这篇文章中,将学习如何应用视频播放器插件以及控制视频播放器的不同功能,感兴趣的可以了解一下
    2022-02-02
  • popupwindow焦点问题解决方案

    popupwindow焦点问题解决方案

    在android 开发过程中,总会遇到一些问题,比如popupwindow焦点问题等等,我们该如何解决呢?需要的朋友可以了解下
    2012-11-11
  • 更新Android Studio 3.0碰到的问题小结

    更新Android Studio 3.0碰到的问题小结

    本文是小编给大家分享的更新Android Studio 3.0碰到的问题小结,非常不错,具有参考借鉴价值,需要的朋友参考下吧
    2017-11-11

最新评论