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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓开发—简单的图片浏览器相关的知识,希望对你有一定的参考价值。

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

以上是关于安卓开发—简单的图片浏览器的主要内容,如果未能解决你的问题,请参考以下文章

安卓开发:SmartImageView简单实现和应用

hybird app项目实例:安卓webview中HTML5拍照图片上传

求修改安卓全局字体颜色的教程(求详细)

简单的java图片浏览器,使图片居中显示

求一个java图片浏览器的源代码,拜托大家了!!!

安卓开发中 出现AndroidManifest.xml missing怎么办