Android实现背景图片轮播

 更新时间:2020年12月22日 11:43:09   作者:明金同学  
这篇文章主要为大家详细介绍了Android实现背景图片轮播,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android实现背景图片轮播的具体代码,供大家参考,具体内容如下

点击按钮实现图片轮播效果

实践案例:

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"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".Main2Activity"
  android:orientation="vertical"
  android:gravity="center">
 
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="350dp">
 
    <android.support.v7.widget.AppCompatImageView
      android:id="@+id/img1"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:src="@mipmap/img1" />
 
    <android.support.v7.widget.AppCompatImageView
      android:id="@+id/img2"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:src="@mipmap/img2" />
 
    <android.support.v7.widget.AppCompatImageView
      android:id="@+id/img3"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:src="@mipmap/img3" />
  </LinearLayout>
 
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <Button
      android:id="@+id/button"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:text="切换图片" />
 
    <Button
      android:id="@+id/button2"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_weight="1"
      android:text="返回主页" />
 
  </LinearLayout>
 
</LinearLayout>

Java

package com.example.administrator.demo2;
 
import android.content.Intent;
import android.media.Image;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
 
public class Main2Activity extends AppCompatActivity {
  //定义所有的轮播图片
  int[] image = new int[]{
      R.mipmap.img1,
      R.mipmap.img2,
      R.mipmap.img3
  };
  //定义初始下标为0
  int Index = 0;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2);
    //获取ImageView
    final ImageView img = (ImageView) findViewById(R.id.img1);
    img.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        if (Index>=2){
          Index=-1;
        }
        //改变ImageView中的Src属性值
        img.setImageResource(image[++Index]);
      }
    });
 
    Button button = (Button) findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        if (Index>=2)
          Index=-1;
        //改变ImageView中的Src属性值
        img.setImageResource(image[++Index]);
      }
    });
 
    Button ubt1 = (Button) findViewById(R.id.button2);
    ubt1.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        Intent it = new Intent();
        it.setClass(Main2Activity.this,MainActivity.class);
        startActivity(it);
      }
    });
 
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android程序开发之Fragment实现底部导航栏实例代码

    Android程序开发之Fragment实现底部导航栏实例代码

    流行的应用的导航一般分为两种,一种是底部导航,一种是侧边栏。本文给大家介绍Fragment实现底部导航栏,对Fragment实现底部导航栏相关知识感兴趣的朋友一起学习吧
    2016-03-03
  • Android控件之Gallery用法实例分析

    Android控件之Gallery用法实例分析

    这篇文章主要介绍了Android控件之Gallery用法,以完整实例形式较为详细的分析了Gallery控件实现图像显示的技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-09-09
  • 用AdapterViewFlipper轻松完成图片轮播

    用AdapterViewFlipper轻松完成图片轮播

    这篇文章主要介绍了如何用AdapterViewFlipper完成图片轮播,帮助大家更好的理解和学习使用AdapterViewFlipper,感兴趣的朋友可以了解下
    2021-04-04
  • Android开发中实现应用的前后台切换效果

    Android开发中实现应用的前后台切换效果

    这篇文章主要介绍了Android开发中实现应用的前后台切换效果的方法,文章最后还附带了监听程序是否进入后台的判断方法,需要的朋友可以参考下
    2016-02-02
  • Android Studio 导入新工程项目图解

    Android Studio 导入新工程项目图解

    这篇文章主要介绍了Android Studio 导入新工程项目图解,需要的朋友可以参考下
    2017-12-12
  • Jetpack Compose状态专篇精讲

    Jetpack Compose状态专篇精讲

    在今年的Google/IO大会上,亮相了一个全新的 Android 原生 UI 开发框架-Jetpack Compose, 与苹果的SwiftIUI一样,Jetpack Compose是一个声明式的UI框架,这篇文章主要介绍了Jetpack Compose状态管理
    2022-10-10
  • Android自定义View实现QQ消息气泡

    Android自定义View实现QQ消息气泡

    这篇文章主要为大家详细介绍了Android自定义View实现QQ消息气泡,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • Android使用Intent发送短信的实现方法

    Android使用Intent发送短信的实现方法

    这篇文章主要介绍了Android使用Intent发送短信的实现方法,结合简单实例形式分析了Android短信发送功能的实现技巧,需要的朋友可以参考下
    2016-07-07
  • Android中两个类让你再也不用实现onActivityResult()

    Android中两个类让你再也不用实现onActivityResult()

    这篇文章主要给大家介绍了关于Android中两个类让你再也不用实现onActivityResult()的相关资料,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面来一起看看吧
    2018-08-08
  • Android编程实现Gallery中每次滑动只显示一页的方法

    Android编程实现Gallery中每次滑动只显示一页的方法

    这篇文章主要介绍了Android编程实现Gallery中每次滑动只显示一页的方法,涉及Android扩展Gallery控件实现翻页效果控制的功能,涉及Android事件响应及属性控制的相关技巧,需要的朋友可以参考下
    2015-11-11

最新评论