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实现底部导航栏实例代码
流行的应用的导航一般分为两种,一种是底部导航,一种是侧边栏。本文给大家介绍Fragment实现底部导航栏,对Fragment实现底部导航栏相关知识感兴趣的朋友一起学习吧2016-03-03Android中两个类让你再也不用实现onActivityResult()
这篇文章主要给大家介绍了关于Android中两个类让你再也不用实现onActivityResult()的相关资料,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面来一起看看吧2018-08-08Android编程实现Gallery中每次滑动只显示一页的方法
这篇文章主要介绍了Android编程实现Gallery中每次滑动只显示一页的方法,涉及Android扩展Gallery控件实现翻页效果控制的功能,涉及Android事件响应及属性控制的相关技巧,需要的朋友可以参考下2015-11-11
最新评论