Android实现⽼虎机⼩游戏代码⽰例⽤ Android studio软件写的⼀个⽼虎机⼩游戏
先上MainActivity.java 的代码。这⾥我⽤得定时器,本想⽤java线程,奈何安卓还不太会,应⽤会闪退。application;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import java.util.Random;
public class MainActivity extends AppCompatActivity {
private ImageView TP1, TP2, TP3;
private Button BTN_START, BTN_FINISH;
private TextView RESULT;
private int[] img = {R.drawable.z1, R.drawable.z2, R.drawable.z3};
Random a = new Random();//随机数
int b, c, d;
Handler handler= new Handler();
Runnable runnable=new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
/
/要做的事情
b = a.nextInt(3);
c = a.nextInt(3);
d = a.nextInt(3);
TP1.setImageResource(img[b]);//放置随机图⽚
TP2.setImageResource(img[c]);
TP3.setImageResource(img[d]);
handler.postDelayed(this, 20);
}
};
@Overrideandroid软件
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
show();
BTN_START.setOnClickListener(new View.OnClickListener() { //开始按钮监听事件
@Override
public void onClick(View view) {
handler.postDelayed(runnable, 20);//定时器启动
}
});
BTN_FINISH.setOnClickListener(new View.OnClickListener() { //结束按钮监听事件 @Override
public void onClick(View view) {
if (img[b] == img[c] && img[b] == img[d] && img[c] == img[d] ) {
if(img[b]==img[0]){
RESULT.setText("恭喜您⼈品⼤爆发,获得⼀等奖:三株豌⾖射⼿");}
else if(img[b]==img[1]){
RESULT.setText("恭喜您⼈品⼤爆发,获得特等奖:三株⽟⽶投⼿");
}else if(img[b]==img[2]){
RESULT.setText("恭喜您祖坟冒青烟,获得钻⽯⼤礼包");
}
} else
if (img[b] == img[c]) {
if(img[b]==img[0]){
RESULT.setText("恭喜您,获得⼆等奖:两头豌⾖射⼿");
}
if(img[b]==img[1]){
RESULT.setText("恭喜您,获得⼆等奖:2株⽟⽶投⼿");
}
if(img[b]==img[2]){
RESULT.setText("恭喜您,获得⼆等奖:两颗钻啊!");
}
}
else
if (img[b] == img[d]) {
if (img[b] == img[0]) {
RESULT.setText("恭喜您,获得⼆等奖:两头豌⾖射⼿");
}
if (img[b] == img[1]) {
RESULT.setText("恭喜您,获得⼆等奖:2株⽟⽶投⼿");
}
if (img[b] == img[2]) {
RESULT.setText("恭喜您,获得⼆等奖:两颗钻啊!");
}
}
else
if (img[c] == img[d]) {
if (img[c] == img[0]) {
RESULT.setText("恭喜您,获得⼆等奖:两头豌⾖射⼿");
}
if (img[c] == img[1]) {
RESULT.setText("恭喜您,获得⼆等奖:2株⽟⽶投⼿");
}
if (img[c] == img[2]) {
RESULT.setText("恭喜您,获得⼆等奖:两颗钻啊!");
}
}
else {
RESULT.setText("⼿⽓也太差了吧!投币再来⼀次吧。");
}
}
});
private void show() {
TP1 = findViewById(R.id.tp1);
TP2 = findViewById(R.id.tp2);
TP3 = findViewById(R.id.tp3);
BTN_START = findViewById(R.id.btn_start);
BTN_FINISH = findViewById(R.id.btn_finish);
RESULT = findViewById(sult);
}
}
在l 放置布局。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="schemas.android/apk/res/android" xmlns:app="schemas.android/apk/res-auto"
xmlns:tools="schemas.android/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bj"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="⽼虎机"
android:textSize="50dp"
android:layout_gravity="center"
android:textColor="#00ff00"
android:layout_marginTop="8dp"
></TextView>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:paddingTop="40dp"
>
<ImageView
android:id="@+id/tp1"
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@drawable/z1"
android:layout_marginLeft="10dp"
></ImageView>
<ImageView
android:id="@+id/tp2"
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@drawable/z3"
android:layout_marginLeft="15dp"
></ImageView>
<ImageView
android:id="@+id/tp3"
android:layout_marginLeft="15dp"
android:layout_width="120dp"
android:layout_height="120dp"
android:src="@drawable/z2"
></ImageView>
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_gravity="center"
android:paddingTop="40dp"
>
<Button
android:id="@+id/btn_start"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="30dp"
android:text="开始"
android:textSize="40dp"
></Button>
<Button
android:id="@+id/btn_finish"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="40dp"
android:text="结束"
android:textSize="40dp"
></Button>
</TableRow>
<TextView
android:id="@+id/result"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_marginTop="35dp"
android:text="抽奖结果:"
android:textColor="@color/white"
android:textSize="30dp"
></TextView>
</LinearLayout>
图⽚资源我就不给了,效果如下图
最后效果:视频太⼤
附上⼏张图,点击开始图⽚不断切换,点击结束按纽判断结果。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论