Android 组件学习笔记(九宫格游戏,imageview设置图片满屏技巧)

本文主要是介绍Android 组件学习笔记(九宫格游戏,imageview设置图片满屏技巧),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这次做的是一个小demo,九宫格拼图游戏

简单介绍一下:九个方格,一个空白方格,只有与空的相接才能相互移动,通过不断移动会拼成一张完整的图片

功能介绍:

  1.图片移动,有一定规则

  2.记录步数,记录移动了多少步

  3.界面跳转,拼完后即跳转到原图(此处还可继续拓展,发展关卡之类的)

问题:1.写这个时开始以为挺简单的,没有好好考虑结构与细节,导致大量代码重复,最后改成函数少写了上百行代码

            2.图片布局问题,因图片原因导致各个图片存在间隙,不美观,结果:

android:scaleType="centerCrop"即改好了

图片:




代码如下

(注意存在图片文件,想要拷贝代码的别忘了在对应位置放好图片改好名字才可以成功运行,还有新建一个界面做好布局):

package com.example.hp.aoteman;
import android.content.ComponentName;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;import java.sql.Struct;public class MainActivity extends AppCompatActivity {ImageView but1,but2,but3,but4,but5,but6,but7,but8,but9;//九张图片放置处int [] pic={R.drawable.dj1, R.drawable.dj2, R.drawable.dj3, R.drawable.dj4, R.drawable.dj5,R.drawable.dj6, R.drawable.dj7, R.drawable.dj8,R.drawable.up1//九张图片};TextView text;//显示移动步数int movenum=0;//记录移动步数int [] rempic=new int[11];//记录组件显示的图片,设置为十一是为了方便对应下标int empty=0,rem=0,ok=0;//记录空的组件位置,rem是交换用的,判断是否拼好的计数void changing(ImageView a,ImageView b,int A,int B)//交换不同组件的图片,并且更新数组记录的数据,还要判断是否已经完成了{a.setImageResource(pic[rempic[B]]);b.setImageResource(pic[rempic[A]]);rem=rempic[A];rempic[A]=rempic[B];rempic[B]=rem;empty=A;movenum+=1;text.setText("移动了"+movenum+"步");ok=0;for(int i=1;i<=9;i++){if(rempic[i]==i-1)ok++;}if(ok==9){Intent intent = new Intent();//主要就是它实现的intent.setClass(MainActivity.this, Main2Activity.class);MainActivity.this.startActivity(intent);}}@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);for(int i=0;i<11;i++){rempic[i]=0;}text=(TextView)findViewById(R.id.textView);but1=(ImageView)findViewById(R.id.but1);but2=(ImageView)findViewById(R.id.but2);but3=(ImageView)findViewById(R.id.but3);but4=(ImageView)findViewById(R.id.but4);but5=(ImageView)findViewById(R.id.but5);but6=(ImageView)findViewById(R.id.but6);but7=(ImageView)findViewById(R.id.but7);but8=(ImageView)findViewById(R.id.but8);but9=(ImageView)findViewById(R.id.but9);but1.setImageResource(pic[7]);rempic[1]=7;but2.setImageResource(pic[4]);rempic[2]=4;but3.setImageResource(pic[5]);rempic[3]=5;but4.setImageResource(pic[2]);rempic[4]=2;but5.setImageResource(pic[1]);rempic[5]=1;but6.setImageResource(pic[3]);rempic[6]=3;but7.setImageResource(pic[6]);rempic[7]=6;but8.setImageResource(pic[0]);rempic[8]=0;but9.setImageResource(pic[8]);rempic[9]=8;//获取组件,并设置组件带的图片,并也用数组记录下来empty=9;//记录空的坐标View.OnClickListener click=new View.OnClickListener() {@Overridepublic void onClick(View v) {switch (v.getId())//根据不同的组件位置设置不同的按键情况,不过具体事件基本相同{case R.id.but1:if(empty==2) changing(but1,but2,1,2);else if(empty==4) changing(but1,but4,1,4);break;case R.id.but2:if(empty==1) changing(but2,but1,2,1);else if(empty==3) changing(but2,but3,2,3);else if(empty==5) changing(but2,but5,2,5);break;case R.id.but3:if(empty==2) changing(but3,but2,3,2);else if(empty==6) changing(but3,but6,3,6);break;case R.id.but4:if(empty==1) changing(but4,but1,4,1);else if(empty==5) changing(but4,but5,4,5);else if(empty==7) changing(but4,but7,4,7);break;case R.id.but5:if(empty==2) changing(but5,but2,5,2);else if(empty==4) changing(but5,but4,5,4);else if(empty==6) changing(but5,but6,5,6);else if(empty==8) changing(but5,but8,5,8);break;case R.id.but6:if(empty==3) changing(but6,but3,6,3);else if(empty==5) changing(but6,but5,6,5);else if(empty==9) changing(but6,but9,6,9);break;case R.id.but7:if(empty==4) changing(but7,but4,7,4);else if(empty==8) changing(but7,but8,7,8);break;case R.id.but8:if(empty==5) changing(but8,but5,8,5);else if(empty==7) changing(but8,but7,8,7);else if(empty==9) changing(but8,but9,8,9);break;case R.id.but9:if(empty==6) changing(but9,but6,9,6);else if(empty==8) changing(but9,but8,9,8);break;}}};but1.setOnClickListener(click);but2.setOnClickListener(click);but3.setOnClickListener(click);but4.setOnClickListener(click);but5.setOnClickListener(click);but6.setOnClickListener(click);but7.setOnClickListener(click);but8.setOnClickListener(click);but9.setOnClickListener(click);}
}
布局代码;

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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="com.example.hp.aoteman.MainActivity"><RelativeLayoutandroid:layout_width="368dp"android:layout_height="495dp"android:paddingBottom="10dp"android:paddingLeft="10dp"android:paddingRight="10dp"android:paddingTop="10dp"tools:layout_editor_absoluteY="8dp"tools:layout_editor_absoluteX="8dp"><ImageViewandroid:id="@+id/but1"android:layout_width="120dp"android:layout_height="120dp"android:scaleType="centerCrop"android:layout_alignParentTop="true"android:layout_alignParentLeft="true"android:layout_alignParentStart="true"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but2"android:layout_width="120dp"android:layout_height="120dp"android:scaleType="centerCrop"android:layout_toRightOf="@+id/but1"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but3"android:layout_width="120dp"android:layout_height="120dp"android:scaleType="centerCrop"android:layout_toRightOf="@+id/but2"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but4"android:layout_width="120dp"android:scaleType="centerCrop"android:layout_height="120dp"android:layout_below="@+id/but1"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but5"android:layout_width="120dp"android:scaleType="centerCrop"android:layout_height="120dp"android:layout_below="@+id/but1"android:layout_toRightOf="@id/but4"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but6"android:layout_width="120dp"android:scaleType="centerCrop"android:layout_height="120dp"android:layout_below="@+id/but1"android:layout_toRightOf="@id/but5"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but7"android:layout_width="120dp"android:scaleType="centerCrop"android:layout_height="120dp"android:layout_below="@id/but4"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but8"android:layout_width="120dp"android:scaleType="centerCrop"android:layout_height="120dp"android:layout_below="@+id/but4"android:layout_toRightOf="@id/but7"app:srcCompat="@android:color/white" /><ImageViewandroid:id="@+id/but9"android:layout_width="120dp"android:scaleType="centerCrop"android:layout_below="@+id/but4"android:layout_toRightOf="@id/but8"android:layout_height="120dp"app:srcCompat="@android:color/white" /><TextViewandroid:id="@+id/textView"android:layout_below="@+id/but7"android:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:text="0"android:textSize="30sp" /></RelativeLayout></android.support.constraint.ConstraintLayout>
第二个界面代码就只是放置了一张图片和一句话就不必发出来了

这篇关于Android 组件学习笔记(九宫格游戏,imageview设置图片满屏技巧)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/311388

相关文章

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

MyBatis 动态 SQL 优化之标签的实战与技巧(常见用法)

《MyBatis动态SQL优化之标签的实战与技巧(常见用法)》本文通过详细的示例和实际应用场景,介绍了如何有效利用这些标签来优化MyBatis配置,提升开发效率,确保SQL的高效执行和安全性,感... 目录动态SQL详解一、动态SQL的核心概念1.1 什么是动态SQL?1.2 动态SQL的优点1.3 动态S

PyCharm如何设置新建文件默认为LF换行符

《PyCharm如何设置新建文件默认为LF换行符》:本文主要介绍PyCharm如何设置新建文件默认为LF换行符问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录PyCharm设置新建文件默认为LF换行符设置换行符修改换行符总结PyCharm设置新建文件默认为LF

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

Linux上设置Ollama服务配置(常用环境变量)

《Linux上设置Ollama服务配置(常用环境变量)》本文主要介绍了Linux上设置Ollama服务配置(常用环境变量),Ollama提供了多种环境变量供配置,如调试模式、模型目录等,下面就来介绍一... 目录在 linux 上设置环境变量配置 OllamPOgxSRJfa手动安装安装特定版本查看日志在