随笔 - 1357  文章 - 0  评论 - 1104  阅读 - 1941万

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);
}
}

};

}
复制代码

运行结果

posted on   Ruthless  阅读(7630)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· 写一个简单的SQL生成工具
· AI 智能体引爆开源社区「GitHub 热点速览」
< 2011年2月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 1 2 3 4 5
6 7 8 9 10 11 12

点击右上角即可分享
微信分享提示