java android 打地鼠

编程入门 行业动态 更新时间:2024-10-23 21:28:11

java android <a href=https://www.elefans.com/category/jswz/34/1752573.html style=打地鼠"/>

java android 打地鼠

[android]代码库package com.example.game.gamehit;

import android.annotation.SuppressLint;

import android.app.Activity;

import android.app.AlertDialog.Builder;

import android.content.Context;

import android.content.DialogInterface;

import android.media.AudioManager;

import android.media.MediaPlayer;

import android.media.SoundPool;

import android.os.Bundle;

import android.view.Gravity;

import android.view.KeyEvent;

import android.view.Window;

import android.view.WindowManager;

import android.widget.ImageView;

import android.widget.TextView;

import com.example.game.gamehitmon.Const;

import com.example.game.gamehit.util.MUtils;

@SuppressLint("ResourceAsColor")

public class MainActivity extends Activity {

private MediaPlayer mBgMediaPlayer;

private boolean isMusic = true;

private Context mContext;

private static SoundPool mSoundPool = new SoundPool(1,

AudioManager.STREAM_MUSIC, 0);

/** 0:打;1:打中;2死机 */

private int[] soundIds = { -1, -1, -1, -1, -1 };

public boolean isPause;

public GameView gameView;

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

// setContentView(R.layout.activity_main);

requestWindowFeature(Window.FEATURE_NO_TITLE);// 无标题

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,

WindowManager.LayoutParams.FLAG_FULLSCREEN);// 全屏

getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); // 应用运行时,保持屏幕高亮,不锁屏

init();

gameView = new GameView(MainActivity.this);

setContentView(gameView);

// playBackgroundVoide();

}

/**

*

*/

private void init() {

mContext = MainActivity.this;

initGameMode();

mBgMediaPlayer = MediaPlayer.create(mContext

更多推荐

java android 打地鼠

本文发布于:2024-02-27 08:39:21,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1705907.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:打地鼠   java   android

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!