国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android控件之ImageView用法實例分析

2020-04-11 11:26:25
字體:
來源:轉載
供稿:網友

本文實例講述了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程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 全椒县| 东平县| 晴隆县| 莱阳市| 崇信县| 玉屏| 昌吉市| 彰化县| 锦屏县| 朔州市| 琼结县| 哈尔滨市| 安顺市| 玉田县| 嘉祥县| 班戈县| 青铜峡市| 秦皇岛市| 濮阳市| 通榆县| 永年县| 东乌| 和政县| 古浪县| 新建县| 阿克| 神池县| 台山市| 安国市| 博兴县| 宜黄县| 盐亭县| 绥德县| 关岭| 福泉市| 鲁甸县| 顺昌县| 遵义县| 巴林左旗| 平顶山市| 贵阳市|