Android控件之ImageView用法实例分析_Android

本文实例讲述了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
, 控件
imageview
roundedimageview用法、gifimageview用法、gestureimageview用法、javafx imageview用法、imageview.layout用法,以便于您获取更多的相关知识。

时间: 2024-10-01 09:56:26

Android控件之ImageView用法实例分析_Android的相关文章

Android控件之ImageView用法实例分析

本文实例讲述了Android控件之ImageView用法.分享给大家供大家参考.具体如下: ImageView控件是一个图片控件,负责显示图片. 以下模拟手机图片查看器 目录结构: main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

Android控件之Gallery用法实例分析_Android

本文实例讲述了Android控件之Gallery用法.分享给大家供大家参考.具体如下: Gallery组件主要用于横向显示图像列表,不过按常规做法.Gallery组件只能有限地显示指定的图像.也就是说,如果为Gallery组件指定了10张图像,那么当Gallery组件显示到第10张时,就不会再继续显示了.这虽然在大多数时候没有什么关系,但在某些情况下,我们希望图像显示到最后一张时再重第1张开始显示,也就是循环显示.要实现这种风格的Gallery组件,就需要对Gallery的Adapter对象进行

Android控件之GridView用法实例分析_Android

本文实例讲述了Android控件之GridView用法.分享给大家供大家参考.具体如下: GridView是一项显示二维的viewgroup,可滚动的网格.一般用来显示多张图片. 以下模拟九宫图的实现,当鼠标点击图片时会进行相应的跳转链接. 目录结构如下: main.xml布局文件,存放GridView控件 <?xml version="1.0" encoding="utf-8"?> <!-- android:numColumns="au

Android控件之TabHost用法实例分析_Android

本文实例讲述了Android控件之TabHost用法.分享给大家供大家参考.具体如下: 以下通过TabHost实现android选项卡. main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width=

Android控件之Spinner用法实例分析_Android

本文实例讲述了Android控件之Spinner用法.分享给大家供大家参考.具体如下: 以下模拟下拉列表的用法 布局文件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/LinearLayout01" android:layout_width="fill_parent" android:layout_height=&

Android控件之ScrollView用法实例分析_Android

本文实例讲述了Android控件之ScrollView用法.分享给大家供大家参考.具体如下: ScrollView滚动视图是指当拥有很多内容,屏幕显示不完时,需要通过滚动跳来显示的视图. ScrollView只支持垂直滚动. 以下为案例 main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android

Android控件之ProgressBar用法实例分析_Android

本文实例讲述了Android控件之ProgressBar用法.分享给大家供大家参考.具体如下: ProgressBar位于android.widget包下,其继承于View,主要用于显示一些操作的进度.应用程序可以修改其长度表示当前后台操作的完成情况.因为进度条会移动,所以长时间加载某些资源或者执行某些耗时的操作时,不会使用户界面失去响应.ProgressBar类的使用非常简单,只需将其显示到前台,然后启动一个后台线程定时更改表示进度的数值即可. 以下ProgressBar跟Handle结合,模

Android控件之ScrollView用法实例分析

本文实例讲述了Android控件之ScrollView用法.分享给大家供大家参考.具体如下: ScrollView滚动视图是指当拥有很多内容,屏幕显示不完时,需要通过滚动跳来显示的视图. ScrollView只支持垂直滚动. 以下为案例 main.xml布局文件: <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android

Android控件之GridView用法实例分析

本文实例讲述了Android控件之GridView用法.分享给大家供大家参考.具体如下: GridView是一项显示二维的viewgroup,可滚动的网格.一般用来显示多张图片. 以下模拟九宫图的实现,当鼠标点击图片时会进行相应的跳转链接. 目录结构如下: main.xml布局文件,存放GridView控件 <?xml version="1.0" encoding="utf-8"?> <!-- android:numColumns="au