文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android控件之ImageView用法实例分析

2022-06-06 09:53

关注

本文实例讲述了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图片居中技巧应用Android控件系列之ImageView使用方法android ImageView 的几点经验总结Android实现ImageView图片双击放大及缩小Android使用控件ImageView加载图片的方法Android UI之ImageView实现图片旋转和缩放Android中ImageView使用网络图片资源的方法Android开发之imageView图片按比例缩放的实现方法Android实现圆角矩形和圆形ImageView的方式Android编程实现ImageView图片抛物线动画效果的方法Android开发实现ImageView宽度顶边显示,高度保持比例的方法


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯