安卓15作业 - 制作个人相册
作者:互联网
任务:制作个人相册
做一个简单的个人相册,提供【上一张】与【下一张】按钮来切换图片,并配上优美的背景音乐。
当切换到第一张图片,如果再单击【上一张】,那么切换到最后一张图片;
当切换到最后一张图片,如果再单击【下一张】,那么切换到第一张图片。
要求每张图片下面有文字说明。
1. 将需要的图片到drawable资源文件中
2.创建包放入音乐
3.编辑activity_main.xml布局资源文件
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical"
android:gravity="center">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上一张"
android:onClick="beforeImg"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下一张"
android:onClick="afterImg"/>
</LinearLayout>
<ImageView
android:id="@+id/imgIds"
android:layout_width="400dp"
android:layout_height="400dp"
android:src="@drawable/img1"/>
</LinearLayout>
4.编辑MainActivity
(1)声明变量
(2) 获取实例
(3)绑定切换图片的事件处理方法
(4)设置背景音乐
运行效果如下:
打开会自动循环播放音乐
标签:一张,15,单击,安卓,背景音乐,个人相册,切换,图片 来源: https://blog.csdn.net/qq_46301426/article/details/112558118