Android中使用GridView和ImageViewSwitcher实现电子相册简单功能实例

 更新时间:2016年12月06日 08:31:06   作者:潘侯爷  
本篇文章主要介绍了Android中使用GridView和ImageViewSwitcher实现电子相册简单功能实例,具有一定的参考价值,有需要的可以了解一下。

我们在手机上查看相册时,首先看到的是网格状的图片展示界面,然后我们选择想要欣赏的照片点击进入,这样就可以全屏观看该照片,并且可以通过左右滑动来切换照片。如下图的显示效果:

实现Activity之间的跳转以及照片标记位置的传递需要用到intent,并分别使用putExtra以及getExtra,传入和获取照片的标记位置。

(关于intent,后期会有专门博文介绍具体使用,请大家持续关注哦)

下面我们开始功能的实现:

第一步:Layout中建立首页GridView布局grid_layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="match_parent"
  android:layout_height="match_parent">
  <GridView
    android:id="@+id/gv"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:numColumns="auto_fit"
    android:verticalSpacing="10dp"
    android:gravity="center"
    android:horizontalSpacing="10dp"></GridView>
</LinearLayout>

第二步:Layout中建立GridView布局中每个item的布局griditem_layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:orientation="vertical" android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:gravity="center">
  <ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:maxWidth="280dp"
    android:maxHeight="280dp"
    android:src="@mipmap/a1"
    android:id="@+id/imageView" />
</LinearLayout>

这里的设置需要根据实际展示图片的宽度以及要展示的容器(手机)分辨率来设置等比例缩放,避免排版混乱的情况出现。

第三步:Layout中建立图片展示界面(包含导航圆点)布局activity_main.xml文件:

这里主布局使用FrameLayout,切换实现布局使用ImageSwitcher,导航圆点使用linearlayout实现(可通过配置文件实现):

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/activity_main"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context="com.example.administrator.switcher.MainActivity">
  <ImageSwitcher
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/is">
  </ImageSwitcher>
  <LinearLayout
    android:id="@+id/point_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:orientation="horizontal">
    <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:src="@mipmap/default_holo"/>
    <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:src="@mipmap/default_holo"/>
    <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:src="@mipmap/default_holo"/>
    <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:src="@mipmap/default_holo"/>
  </LinearLayout>
</FrameLayout>

第四步:Java中Activity的实现代码,首页GridView的实现代码GridActivity.java:

本次自定义适配器中getview方法已经优化:

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.GridView;
import android.widget.ImageView;
public class GridActivity extends AppCompatActivity {
  private GridView gv;
  int[] images={R.mipmap.a1,R.mipmap.a2,R.mipmap.a3,R.mipmap.a4};
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.grid_layout);
    gv= (GridView) findViewById(R.id.gv);
    gv.setAdapter(new MyAdapter());
    //设置单击GridView中每个item的单击事件
    gv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
      @Override
      public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        //使用intend获取要交互的Activity,也就是将要跳转的界面
        Intent intent = new Intent(GridActivity.this,MainActivity.class);
        //通过intent的putExtra方法获取点击图片的下标位置(用于Activity之间数据传输)
        intent.putExtra("select",position);
        //启动要交互的Activity(通过传入包含该Activity的intent)
        startActivity(intent);
      }
    });
  }
  class MyAdapter extends BaseAdapter{

    @Override
    public int getCount() {
      return images.length;
    }

    @Override
    public Object getItem(int position) {
      return images[position];
    }

    @Override
    public long getItemId(int position) {
      return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
      ViewHolder vh;
      if(convertView==null){
        convertView=getLayoutInflater().inflate(R.layout.griditem_layout,null);
        vh= new ViewHolder();
        vh.iv= (ImageView) convertView.findViewById(R.id.imageView);
        convertView.setTag(vh);
      }
      vh= (ViewHolder) convertView.getTag();
      vh.iv.setImageResource(images[position]);
      return convertView;
    }
    class ViewHolder{
      ImageView iv;
    }
  }
}

第五步:Java中Activity的实现代码,跳转后的ImageSwicher的实现代码MainActivity.java:

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ViewSwitcher;
import java.util.ArrayList;
/**
 * Created by panchengjia on 2016/12/05.
 */
public class MainActivity extends AppCompatActivity implements ViewSwitcher.ViewFactory,View.OnTouchListener{
  private ImageSwitcher is;//声明ImageSwitcher布局
  private LinearLayout point_layout;//声明导航圆点的布局
  //图片id数组(需要与GridActivity中的图片资源数组一一对应)
  int[] images={R.mipmap.a1,R.mipmap.a2,R.mipmap.a3,R.mipmap.a4};
  //实例化存储导航圆点的集合
  ArrayList<ImageView> points = new ArrayList<>();
  int index;//声明index,记录图片id数组下标
  float startX;//手指接触屏幕时X的坐标(演示左右滑动)
  float endX;//手指离开屏幕时的坐标(演示左右滑动)

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //获取GridActivity中设置的intent
    Intent intent = getIntent();
    //获取GridActivity中得到的图片下标,并随意设置默认值
    index = intent.getIntExtra("select",0);
    is = (ImageSwitcher) findViewById(R.id.is);
    is.setFactory(this);//通过工厂实现ImageSwitcher
    initpoint();
    is.setOnTouchListener(this);//设置触摸事件
  }
  //初始化导航圆点的方法
  private void initpoint() {
    point_layout= (LinearLayout) findViewById(R.id.point_layout);
    int count = point_layout.getChildCount();//获取布局中圆点数量
    for(int i =0;i<count;i++){
      //将布局中的圆点加入到圆点集合中
      points.add((ImageView) point_layout.getChildAt(i));
    }
    //设置GridActivity中选中图片对应的圆点状态为触摸实心状态
    points.get(index).setImageResource(R.mipmap.touched_holo);
  }
  //设选中图片对应的导航原点的状态
  public void setImageBackground(int selectImage) {
    for(int i=0;i<points.size();i++){
      //如果选中图片的下标等于圆点集合中下标的id,则改变圆点状态
      if(i==selectImage){
        points.get(i).setImageResource(R.mipmap.touched_holo);
      }else{
        points.get(i).setImageResource(R.mipmap.default_holo);
      }
    }
  }
  //实现ViewFactory的方法实例化imageView(这里未设置ImageView的属性)
  @Override
  public View makeView() {
    //实例化一个用于切换的ImageView视图
    ImageView iv = new ImageView(this);
    iv.setScaleType(ImageView.ScaleType.FIT_XY);
    //默认展示的第一个视图为images[index](主页面跳转过来的图片)
    iv.setImageResource(images[index]);
    return iv;
  }
  @Override
  public boolean onTouch(View v, MotionEvent event) {
    //按下屏幕
    if(event.getAction()==MotionEvent.ACTION_DOWN){
      startX=event.getX();//获取按下屏幕时X轴的坐标
      //手指抬起
    }else if (event.getAction()==MotionEvent.ACTION_UP){
      endX=event.getX();
      //判断结束坐标大于起始坐标则为下一张(为避免误操作,设置30的判断区间)
      if(startX-endX>30){
        //三目运算判断当前图片已经为最后一张,则从头开始
        index = index+1<images.length?++index:0;
        //使用系统自带的切换出入动画效果(也可以像ViewFlipper中一样自定义动画效果)
        is.setInAnimation(this,android.R.anim.fade_in);
        is.setOutAnimation(this,android.R.anim.fade_out);

        //判断结束坐标小于于起始坐标则为上一张(为避免误操作,设置30的判断区间)
      }else if(endX-startX>30){
        //三目运算判断当前图片已经为第一张,则上一张为数组内最后一张图片
        index = index-1>=0?--index:images.length-1;
        is.setInAnimation(this,android.R.anim.fade_in);
        is.setOutAnimation(this,android.R.anim.fade_out);
      }
      //设置ImageSwitcher的图片资源
      is.setImageResource(images[index]);
      //调用方法设置圆点对应状态
      setImageBackground(index);
    }
    return true;
  }
}


本次代码展示到这里就结束了,按照前文所讲,大家可以尝试多种实现方法,本次使用到的intent,后面会有详细讲述,也希望大家多多支持脚本之家。

相关文章

  • logcat命令使用方法和查看android系统日志缓冲区内容的方法

    logcat命令使用方法和查看android系统日志缓冲区内容的方法

    这篇文章主要介绍了logcat命令使用方法和查看android系统日志缓冲区内容的方法,需要的朋友可以参考下
    2014-02-02
  • Android使用ViewStub实现布局优化方法示例

    Android使用ViewStub实现布局优化方法示例

    这篇文章主要为大家介绍了Android使用ViewStub实现布局优化方法示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-08-08
  • Android简单实现自定义弹框(PopupWindow)

    Android简单实现自定义弹框(PopupWindow)

    本文主要介绍了Android利用PopupWindow实现自定义弹框的相关知识。具有很好的参考价值。下面跟着小编一起来看下吧
    2017-04-04
  • Android实现超级棒的沉浸式体验教程

    Android实现超级棒的沉浸式体验教程

    这篇文章主要给大家介绍了关于Android如何实现超级棒的沉浸式体验的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Android具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-11-11
  • 详解Android版本适配:9.0 Pie

    详解Android版本适配:9.0 Pie

    这篇文章主要介绍了Android版本适配9.0 Pie,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-04-04
  • 点击微信内网页a标签直接跳转打开淘宝APP的方法实例

    点击微信内网页a标签直接跳转打开淘宝APP的方法实例

    这篇文章主要给大家介绍了关于如何实现点击微信内网页a标签直接跳转打开淘宝APP的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧。
    2017-11-11
  • Android中AOP(面向切向编程)的深入讲解

    Android中AOP(面向切向编程)的深入讲解

    这篇文章主要给大家介绍了关于Android中AOP(面向切向编程)的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-09-09
  • Android_UI 仿QQ侧滑菜单效果的实现

    Android_UI 仿QQ侧滑菜单效果的实现

    相信大家对QQ侧滑菜单的效果已经不陌生了吧,侧滑进入个人头像一侧,进行对头像的更改,我的收藏,QQ钱包,我的文件等一系列的操作,下面小编给大家分享Android_UI 仿QQ侧滑菜单效果的实现,一起看看吧
    2017-04-04
  • Android开发实现的简单计算器功能【附完整demo源码下载】

    Android开发实现的简单计算器功能【附完整demo源码下载】

    这篇文章主要介绍了Android开发实现的简单计算器功能,结合实例形式分析了Android计算器的具体实现步骤与相关操作技巧,并附带完整demo源码供读者下载参考,需要的朋友可以参考下
    2017-11-11
  • Android View与Compose互相调用实例探究

    Android View与Compose互相调用实例探究

    这篇文章主要介绍了Android View与Compose互相调用,Compose 具有超强的兼容性,兼容现有的所有代码,Compose 能够与现有 View 体系并存,可实现渐进式替换
    2023-01-01

最新评论