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

采用线性布局,将图片保存在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]);
            }
        });
    }
    
}

posted @ 2016-03-31 13:18  帅哒小二  阅读(284)  评论(0编辑  收藏  举报