码迷,mamicode.com
首页 > 移动开发 > 详细

安卓开发—简单的图片浏览器

时间:2016-03-31 14:43:21      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

采用线性布局,将图片保存在xml文件中;在java后台代码中调用数组储存,加入添加点击事件,使单击图片之后循环遍历数组中的每一张图;

具体代码如下:

xml代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/root"
    >
</LinearLayout>

java代码:

package com.example.code;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;

public class MainActivity extends Activity {
//定义一个访问图片的数组
    int[] images=new int[]{
        R.drawable.a,
        R.drawable.android,
        R.drawable.android_os,
        R.drawable.android3png,
        R.drawable.android4png,    
    };
    int currentImg=0;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       //获取LinearLayout线性布局容器
        LinearLayout main=(LinearLayout) findViewById(R.id.root);
        //创建ImgView组件
        final ImageView image=new ImageView(this);
        //将ImgView组件添加到LinearLayout布局容器中去
        main.addView(image);
        //初始化时显示第一张图片
        image.setImageResource(images[0]);

   //添加单击事件
        image.setOnClickListener(new View.OnClickListener() {
            
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                //改变ImageView里显示的图片
                image.setImageResource(images[++currentImg % images.length]);
            }
        });
    }
    
}

安卓开发—简单的图片浏览器

标签:

原文地址:http://www.cnblogs.com/wy-internet-cd/p/5340831.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!