首页

android 打地鼠 小游戏源码

java

2020-6-26

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.gamehit.common.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, Const.voiceBackground);
		mBgMediaPlayer.setLooping(true);//循环
		soundIds[Const.voiceShoot] = mSoundPool.load(mContext, R.raw.shoot, 1);
		soundIds[Const.voiceHit] = mSoundPool.load(mContext, R.raw.hit, 1);
		soundIds[Const.voiceNo] = mSoundPool.load(mContext, R.raw.no, 1);
		soundIds[Const.voiceNextlevel] = mSoundPool.load(mContext, R.raw.nextlevel, 1);
		soundIds[Const.voiceGameover] = mSoundPool.load(mContext, R.raw.gameover, 1);
		
		adMethod();
	}

    /**
	 * 
	 */
	private void adMethod() {
		MUtils.getInstance(mContext);
		MUtils.showRight();
		MUtils.getInstance(mContext);
		MUtils.showBtoom();
	}

	/* (non-Javadoc)
     * @see android.app.Activity#onKeyDown(int, android.view.KeyEvent)
     */
    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
    	switch (event.getKeyCode()) {
		case KeyEvent.KEYCODE_BACK:
			finish();
			return true;
		}
    	//super.onKeyDown(keyCode, event)
    	return false;
    }
    
    /**
	 * @return
	 */
	private boolean isGotomenu() {
		isPause = true;
		boolean flag = false;
		Builder gotoMenu = new Builder(mContext);
		TextView textView = new TextView(mContext);
    	textView.setText("要返回菜单吗?");
    	textView.setTextSize(24);
    	textView.setTextColor(getResources().getColor(R.color.fontColor));
    	textView.setGravity(Gravity.CENTER);
    	textView.setBackgroundColor(getResources().getColor(android.R.color.darker_gray));
		gotoMenu.setView(textView);
		gotoMenu.setPositiveButton("是", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				finish();
			}
		});
		gotoMenu.setNegativeButton("否", null);
		gotoMenu.show();
		return flag;
	}

	public void nextLevel(){
    	playVoice(Const.voiceNextlevel);
    	TextView textView = new TextView(mContext);
    	textView.setText("成功过关!你真棒!");
    	textView.setTextSize(24);
    	textView.setTextColor(getResources().getColor(R.color.fontColor));
    	textView.setGravity(Gravity.CENTER);
    	textView.setBackgroundColor(getResources().getColor(android.R.color.darker_gray));
    	Builder nextLevel = new Builder(mContext);
    	nextLevel.setView(textView);
    	nextLevel.setPositiveButton("下一关", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				gameView.startGame();
			}
		});
    	nextLevel.setNegativeButton("返回菜单", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				finish();
			}
		});
    	nextLevel.setCancelable(false);
    	nextLevel.show();
    }
    
    public void gameOver(){
    	playVoice(Const.voiceGameover);
    	ImageView imgView = new ImageView(mContext);
    	imgView.setBackgroundColor(getResources().getColor(android.R.color.darker_gray));
    	imgView.setBackgroundResource(R.drawable.gameover);
    	Builder gameOver = new Builder(mContext);
    	gameOver.setView(imgView);
    	gameOver.setPositiveButton("重新挑战", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				gameView.initGameInfo();
			}
		});
    	gameOver.setNegativeButton("返回菜单", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				finish();
			}
		});
    	gameOver.setCancelable(false);
    	gameOver.show();
    }
    
    @SuppressLint("ResourceAsColor")
	public void showTimerGrade(int grade, int killnum){
    	playVoice(Const.voiceNextlevel);
    	Builder timerGrade = new Builder(mContext);
    	TextView textView = new TextView(mContext);
    	textView.setText("本次" Const.timeNum "秒计时\r\n击中:" killnum "个\r\n得分:" grade "分");
    	textView.setTextColor(getResources().getColor(R.color.fontColor));
    	textView.setTextSize(24);
    	textView.setGravity(Gravity.CENTER);
    	textView.setBackgroundColor(getResources().getColor(android.R.color.darker_gray));
    	timerGrade.setView(textView);
    	timerGrade.setPositiveButton("重新挑战", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				gameView.initGameInfo();
			}
		});
    	timerGrade.setNegativeButton("返回菜单", new DialogInterface.OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				finish();
			}
		});
    	timerGrade.setCancelable(false);
    	timerGrade.show();
    }
    
    public void initGameMode(){
    	switch (Const.gameMode) {
		case Const.gameMode_Level://闯关模式
//			Const.backgroundImgResid = R.drawable.maplevel48_001;
			Const.backgroundImgResid = R.drawable.mapds48_001;
			Const.gameArrayStrResid = R.string.didong_level;
			Const.voiceBackground = R.raw.level;
			break;
		case Const.gameMode_Random://随机模式
			Const.backgroundImgResid = R.drawable.mapds48_001;
			Const.gameArrayStrResid = R.string.didong_001;
			Const.voiceBackground = R.raw.random;
			break;
		case Const.gameMode_Timer://计时模式
			Const.voiceBackground = R.raw.time;
			Const.backgroundImgResid = R.drawable.mapds48_001;
			Const.gameArrayStrResid = R.string.didong_level;
			break;
		case Const.gameMode_Super://无尽模式
			Const.voiceBackground = R.raw.supers;
			Const.backgroundImgResid = R.drawable.mapds48_001;
			Const.gameArrayStrResid = R.string.didong_001;
			break;
		}
    }
    
    /**播放背景音乐*/
    public void playBackgroundMusic(){
    	if(Const.backgroundMusicOn && mBgMediaPlayer!=null){
			mBgMediaPlayer.start();
    	}else{
    		if(mBgMediaPlayer.isPlaying()){
    			mBgMediaPlayer.pause();
    		}
    	}
    }
    
//    /**播放无效攻击音效*/
//    public void playHitVoice(){
//    	if(Const.voiceMusicOn && soundIds[0]!=-1){
//    		mSoundPool.play(soundIds[0], 1.0f, 1.0f, 1, 0, 1.0f);
//    	}
//    }
//    
//    /**播放击中音效*/
//    public void playDishuDeadVoice(){
//    	if(Const.voiceMusicOn && soundIds[1]!=-1){
//    		mSoundPool.play(soundIds[1], 1.0f, 1.0f, 1, 0, 1.0f);
//    	}
//    }
    
    /**播放指定音效*/
    public void playVoice(int idx){
    	if(Const.voiceMusicOn && soundIds[idx]!=-1){
    		mSoundPool.play(soundIds[idx], 1.0f, 1.0f, 1, 0, 1.0f);
    	}
    }
    
    /* (non-Javadoc)
     * @see android.app.Activity#onDestroy()
     */
    @Override
    protected void onDestroy() {
    	if (this.mBgMediaPlayer != null) {
    		if (this.isMusic){
    			this.mBgMediaPlayer.stop();
    			this.mBgMediaPlayer.release();
    			this.mBgMediaPlayer = null;
    		}
        }
    	super.onDestroy();
    }
}
资源下载此资源下载价格为3D币(VIP免费),请先
资源文件列表
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/.classpath , 364
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/.project , 849
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/AndroidManifest.xml , 7704
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/BuildConfig.class , 357
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/GameView.class , 12110
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$1.class , 896
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$2.class , 993
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$3.class , 889
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$4.class , 995
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$5.class , 888
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$6.class , 1009
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity$7.class , 902
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MainActivity.class , 6787
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MenuActivity$1.class , 3363
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MenuActivity$2.class , 1091
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MenuActivity$3.class , 1091
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MenuActivity$4.class , 1091
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MenuActivity$5.class , 889
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/MenuActivity.class , 6446
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$attr.class , 358
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$color.class , 445
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$drawable.class , 1096
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$id.class , 551
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$layout.class , 421
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$raw.class , 673
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$string.class , 600
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R$style.class , 413
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/R.class , 731
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/UpDownThread.class , 392
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/anima/HammerAnima.class , 1094
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/anima/UpDownAnima.class , 5085
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/common/Const$1.class , 607
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/common/Const$2.class , 616
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/common/Const.class , 2821
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/custom/IBS.class , 293
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/custom/IIA.class , 293
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/custom/INS.class , 293
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/custom/IRE.class , 293
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/custom/IRLA.class , 297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/custom/IRSA.class , 297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/kb/MyADActivity.class , 490
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/kb/MyReceiver.class , 558
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/kb/MyWDActivity.class , 490
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/kz/MyBActivity.class , 479
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/kz/MyKActivity.class , 479
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/kz/MyKReceiver.class , 561
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/ts/MyMActivity.class , 479
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/ts/MyMReceiver.class , 561
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/share/ts/MyMService.class , 489
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/util/BitmapUtil.class , 2126
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/util/GameUtil.class , 2559
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/util/MUtils.class , 2192
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/bin/classes/com/example/game/gamehit/util/ToastUtil.class , 1116
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/gen/com/example/game/gamehit/BuildConfig.java , 166
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/gen/com/example/game/gamehit/R.java , 3186
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/ic_launcher-web.png , 18158
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/libs/android-support-v4.jar , 349252
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/libs/androidAP.jar , 224947
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/libs/androidkb.jar , 184320
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/libs/androidkz.jar , 377203
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/libs/androidts.jar , 169940
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/proguard-project.txt , 4447
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/project.properties , 629
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/btn_menu.xml , 466
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/btn_normal.png , 25516
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/btn_pressed.png , 25584
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/dd_dc.png , 6053
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/dishu2_40x60.png , 47612
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/dishu_40x60.png , 49433
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/gameover.png , 4784
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/hp.png , 5796
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/level69x35.png , 3589
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/linkhit_69x35.png , 2926
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/mapds48_001.png , 468805
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/me_48.png , 40643
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/me_72.png , 61682
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/muchui_002.png , 12297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/music_96x48.png , 37619
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/nextlevel.png , 11929
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/num.png , 9196
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/score.png , 3745
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/smalldishu_40.png , 29920
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/timer.png , 2919
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/x.png , 1297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-hdpi/xuanyun_64.png , 7029
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/hp.png , 5796
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/level69x35.png , 3589
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/mapds48_001.png , 468805
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/me_48.png , 40643
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/me_72.png , 61682
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/muchui_002.png , 12297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/music_96x48.png , 37619
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/num.png , 9196
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/score.png , 3745
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/smalldishu_40.png , 29920
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-ldpi/timer.png , 2919
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/hp.png , 5796
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/level69x35.png , 3589
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/mapds48_001.png , 468805
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/me_48.png , 40643
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/me_72.png , 61682
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/muchui_002.png , 12297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/music_96x48.png , 37619
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/num.png , 9196
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/score.png , 3745
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/smalldishu_40.png , 29920
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-mdpi/timer.png , 2919
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/dd_dc.png , 6053
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/dishu2_40x60.png , 42367
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/dishu_40x60.png , 42501
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/hp.png , 5796
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/level69x35.png , 3589
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/mapds48_001.png , 468805
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/me_48.png , 40643
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/me_72.png , 61682
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/muchui_002.png , 12297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/music_96x48.png , 37619
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/num.png , 9196
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/score.png , 3745
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/smalldishu_40.png , 29920
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/drawable-xhdpi/timer.png , 2919
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/layout/activity_main.xml , 2041
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/background.mid , 6183
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/gameover.ogg , 14577
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/hit.ogg , 5415
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/level.wav , 1895980
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/nextlevel.ogg , 24079
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/no.wav , 7528
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/random.ogg , 147983
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/shoot.ogg , 9875
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/supers.ogg , 344574
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/raw/time.wav , 1695788
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/values/colors.xml , 218
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/values/dimens.xml , 181
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/values/strings.xml , 1521
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/values/styles.xml , 89
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/res/values-large/dimens.xml , 182
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/GameView.java , 15843
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/MainActivity.java , 8409
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/MenuActivity.java , 8819
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/UpDownThread.java , 651
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/anima/HammerAnima.java , 1297
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/anima/UpDownAnima.java , 5417
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/common/Const.java , 3956
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/custom/IBS.java , 103
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/custom/IIA.java , 103
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/custom/INS.java , 103
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/custom/IRE.java , 103
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/custom/IRLA.java , 106
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/custom/IRSA.java , 106
░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/░▓╫┐╙╬╧╖┤≥╡╪╩≤╘┤┬δ/CopyofgameHit/src/com/example/game/gamehit/share/kb/MyADActivity.java , 760
最多只能显示150条信息!
没有账号? 忘记密码?

社交账号快速登录