实例介绍
借用雷霆战机素材开发,有2种主机,3种副武器,3种僚机,副武器为机关枪,跟踪弹,定向离子炮,僚机为穿甲弹,爆破弹,散弹,3种装甲(影响生命值),关卡模式为3关,无限模式未开放,源码仅供参考,开发环境为eclipse+安卓5.0,基于16:9的手机屏幕适配
【实例截图】
【核心代码】
4ea91fdf-8709-4301-9754-f71cf92f91f1
└── 虚空之影
├── AndroidManifest.xml
├── assets
│ ├── airplane
│ │ ├── enemy
│ │ │ ├── AIR01L.png
│ │ │ ├── AIR01.png
│ │ │ ├── AIR02.png
│ │ │ ├── AIR03.png
│ │ │ ├── AIR04.png
│ │ │ ├── AIR05.png
│ │ │ ├── AIR06.png
│ │ │ ├── AIR21.png
│ │ │ ├── AIR22.png
│ │ │ ├── AIR23.png
│ │ │ └── AIR51.png
│ │ ├── huoFengJet.png
│ │ ├── huoFeng.png
│ │ ├── jet_blue.png
│ │ ├── jet_red.png
│ │ ├── jet_yellow.png
│ │ ├── leiShe.png
│ │ ├── lively.png
│ │ ├── no_13.png
│ │ ├── no_1.png
│ │ ├── no_2.png
│ │ ├── no_3.png
│ │ ├── sorrow.png
│ │ ├── xuKongJet.png
│ │ └── xuKong.png
│ ├── bg_cloud.jpg
│ ├── bg_starry_sky.jpg
│ ├── blast
│ │ ├── blast_airplane.png
│ │ └── blast_bullet.png
│ ├── boss_hp_bg.png
│ ├── boss_hp.png
│ ├── bullet
│ │ ├── biuBiuBiu.png
│ │ ├── bullet01.png
│ │ ├── bullet02.png
│ │ ├── bullet03.png
│ │ ├── bullet04.png
│ │ ├── bullet05.png
│ │ ├── bullet06.png
│ │ ├── chuanJiaDan.png
│ │ ├── daoDan1.png
│ │ ├── daoDan.png
│ │ ├── dianCiPao.png
│ │ ├── fengRen.png
│ │ ├── fenLieDan.png
│ │ ├── heDanBlast.png
│ │ ├── heDan.png
│ │ ├── liHuaZhen.png
│ │ └── liZiPao.png
│ ├── hero_hp_bg.png
│ ├── hero_hp.png
│ ├── number.png
│ ├── score_bg.png
│ └── spar
│ ├── spar_blue.png
│ ├── spar_green.png
│ └── spar_yellow.png
├── bin
│ ├── AndroidManifest.xml
│ ├── classes
│ │ └── cn
│ │ └── deadly
│ │ └── game
│ │ ├── activity
│ │ │ ├── GameActivity$1.class
│ │ │ ├── GameActivity$2.class
│ │ │ ├── GameActivity$3.class
│ │ │ ├── GameActivity.class
│ │ │ ├── GuideActivity$1.class
│ │ │ ├── GuideActivity.class
│ │ │ ├── MainActivity$1.class
│ │ │ ├── MainActivity$2.class
│ │ │ ├── MainActivity$3.class
│ │ │ ├── MainActivity.class
│ │ │ ├── ResultLostActivity$1.class
│ │ │ ├── ResultLostActivity$2.class
│ │ │ ├── ResultLostActivity.class
│ │ │ ├── ResultWinActivity$1.class
│ │ │ ├── ResultWinActivity$2.class
│ │ │ └── ResultWinActivity.class
│ │ ├── adapter
│ │ │ ├── EquipListAdapter$1.class
│ │ │ ├── EquipListAdapter$2.class
│ │ │ ├── EquipListAdapter$ViewHolder.class
│ │ │ └── EquipListAdapter.class
│ │ ├── Application
│ │ │ └── MyApplication.class
│ │ ├── BuildConfig.class
│ │ ├── dal
│ │ │ └── PlayerDao.class
│ │ ├── entity
│ │ │ ├── aircraft
│ │ │ │ ├── Airplane.class
│ │ │ │ ├── enemy
│ │ │ │ │ ├── AIR01.class
│ │ │ │ │ ├── AIR01L.class
│ │ │ │ │ ├── AIR02.class
│ │ │ │ │ ├── AIR03.class
│ │ │ │ │ ├── AIR04.class
│ │ │ │ │ ├── AIR05.class
│ │ │ │ │ ├── AIR06.class
│ │ │ │ │ ├── AIR21.class
│ │ │ │ │ ├── AIR22.class
│ │ │ │ │ ├── AIR23.class
│ │ │ │ │ ├── AIR51.class
│ │ │ │ │ ├── AIR88.class
│ │ │ │ │ ├── BOSS.class
│ │ │ │ │ ├── Enemy.class
│ │ │ │ │ └── No_13.class
│ │ │ │ ├── hero
│ │ │ │ │ ├── Hero.class
│ │ │ │ │ ├── HuoFeng.class
│ │ │ │ │ └── XuKong.class
│ │ │ │ ├── minions
│ │ │ │ │ ├── Lively.class
│ │ │ │ │ ├── LivelyMinions.class
│ │ │ │ │ ├── Minions.class
│ │ │ │ │ ├── Sorrow.class
│ │ │ │ │ └── SorrowMinions.class
│ │ │ │ ├── secondary
│ │ │ │ │ ├── Battery.class
│ │ │ │ │ ├── GatlingGun.class
│ │ │ │ │ ├── RailGun.class
│ │ │ │ │ └── Secondary.class
│ │ │ │ └── wingman
│ │ │ │ ├── No_1.class
│ │ │ │ ├── No_2.class
│ │ │ │ ├── No_3.class
│ │ │ │ └── Wingman.class
│ │ │ ├── background
│ │ │ │ └── GameBackground.class
│ │ │ ├── blast
│ │ │ │ ├── AirplaneBlast.class
│ │ │ │ ├── Blast.class
│ │ │ │ └── BulletBlast.class
│ │ │ ├── BossHp.class
│ │ │ ├── bullet
│ │ │ │ ├── BiuBiuBiu.class
│ │ │ │ ├── Bullet01.class
│ │ │ │ ├── Bullet02.class
│ │ │ │ ├── Bullet03.class
│ │ │ │ ├── Bullet04.class
│ │ │ │ ├── Bullet05.class
│ │ │ │ ├── Bullet06.class
│ │ │ │ ├── Bullet.class
│ │ │ │ ├── ChuanJiaDan.class
│ │ │ │ ├── DaoDan.class
│ │ │ │ ├── DianCiPao.class
│ │ │ │ ├── FengRen.class
│ │ │ │ ├── FenLieDan.class
│ │ │ │ ├── HeDanBlast.class
│ │ │ │ ├── HeDan.class
│ │ │ │ ├── interfaces
│ │ │ │ │ ├── Bomb.class
│ │ │ │ │ ├── Fission.class
│ │ │ │ │ └── SpecialBullet.class
│ │ │ │ ├── LiHuaZhen.class
│ │ │ │ ├── LiZiPao.class
│ │ │ │ └── uitl
│ │ │ │ ├── BulletArray.class
│ │ │ │ └── BulletWindmill.class
│ │ │ ├── equip
│ │ │ │ ├── armor
│ │ │ │ │ ├── ArmorE1.class
│ │ │ │ │ ├── ArmorE2.class
│ │ │ │ │ ├── ArmorE3.class
│ │ │ │ │ └── ArmorE.class
│ │ │ │ ├── Equip.class
│ │ │ │ ├── hero
│ │ │ │ │ ├── HeroE.class
│ │ │ │ │ ├── HuoFengE.class
│ │ │ │ │ └── XuKongE.class
│ │ │ │ ├── secondary
│ │ │ │ │ ├── BatteryE.class
│ │ │ │ │ ├── GatlingGunE.class
│ │ │ │ │ ├── RailGunE.class
│ │ │ │ │ └── SecondaryE.class
│ │ │ │ └── wingman
│ │ │ │ ├── No_1E.class
│ │ │ │ ├── No_2E.class
│ │ │ │ ├── No_3E.class
│ │ │ │ └── WingmanE.class
│ │ │ ├── Flyer.class
│ │ │ ├── HeroHp.class
│ │ │ ├── Hp.class
│ │ │ ├── Music.class
│ │ │ ├── NumberBitmap.class
│ │ │ ├── Player.class
│ │ │ ├── skill
│ │ │ │ ├── ShiKongDaoLiu.class
│ │ │ │ ├── ShiKongLieHen.class
│ │ │ │ ├── Skill.class
│ │ │ │ └── UAV.class
│ │ │ └── spar
│ │ │ ├── BlueSpar.class
│ │ │ ├── GreenSpar.class
│ │ │ ├── Spar.class
│ │ │ └── YellowSpar.class
│ │ ├── factory
│ │ │ ├── AirFactory.class
│ │ │ ├── BgFactory.class
│ │ │ ├── BlastFactory.class
│ │ │ ├── BulletFactory.class
│ │ │ ├── EnemyFactory.class
│ │ │ ├── HpFactory.class
│ │ │ └── SparFactory.class
│ │ ├── R$anim.class
│ │ ├── R$attr.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$raw.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R.class
│ │ ├── service
│ │ │ ├── MusicService$InnerReceiver.class
│ │ │ └── MusicService.class
│ │ ├── ui
│ │ │ ├── GameSurfaceView.class
│ │ │ └── ShowSurfaceView.class
│ │ └── util
│ │ ├── AngleUtil.class
│ │ ├── BitmapUtil.class
│ │ ├── BulletUtil.class
│ │ ├── Common.class
│ │ └── PlayLevelUtil.class
│ ├── classes.dex
│ ├── dexedLibs
│ │ ├── android-support-v4-a05fb6a84f79b3045d5c707269838e4f.jar
│ │ └── xutils-3.3.2-0213663251cfc4eb761e3f6e511797e7.jar
│ ├── jarlist.cache
│ ├── res
│ │ └── crunch
│ │ ├── drawable-nodpi
│ │ │ ├── bg_equip_info.9.png
│ │ │ └── bg_equip_list.9.png
│ │ ├── drawable-xhdpi
│ │ │ ├── bg_result_1.png
│ │ │ ├── bg_result_2.png
│ │ │ ├── bg_result_lost.png
│ │ │ ├── bg_result_win.png
│ │ │ ├── btn_back.png
│ │ │ ├── btn_back_p.png
│ │ │ ├── btn_chuang_guan.png
│ │ │ ├── btn_chuang_guan_p.png
│ │ │ ├── btn_continue_bg.png
│ │ │ ├── btn_continue.png
│ │ │ ├── btn_continue_p.png
│ │ │ ├── btn_side_bg.png
│ │ │ ├── btn_skill.png
│ │ │ ├── btn_skill_p.png
│ │ │ ├── btn_update_equip.png
│ │ │ ├── btn_update_equip_p.png
│ │ │ ├── btn_wu_jin.png
│ │ │ ├── btn_wu_jin_p.png
│ │ │ ├── dian_ci_pao.png
│ │ │ ├── equip_bg2.png
│ │ │ ├── equip_bg3.png
│ │ │ ├── equip_bg.png
│ │ │ ├── ge_lin_qiang.png
│ │ │ ├── hu_jia_1.png
│ │ │ ├── hu_jia_2.png
│ │ │ ├── hu_jia_3.png
│ │ │ ├── hu_jiao_guan.png
│ │ │ ├── huo_feng.png
│ │ │ ├── ic_launcher.png
│ │ │ ├── lei_she.png
│ │ │ ├── li_zi_pao.png
│ │ │ ├── main_bottom_bg.png
│ │ │ ├── no_1.png
│ │ │ ├── no_2.png
│ │ │ ├── no_3.png
│ │ │ ├── result_lost_bg.png
│ │ │ ├── ru_jie.png
│ │ │ ├── wei_jie.png
│ │ │ └── xu_kong.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
│ ├── resources.ap_
│ └── 虚空之影.apk
├── gen
│ └── cn
│ └── deadly
│ └── game
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
│ ├── android-support-v4.jar
│ └── xutils-3.3.2.jar
├── proguard-project.txt
├── project.properties
└── res
├── anim
│ ├── anim_entrance_alpha_0.xml
│ ├── anim_entrance_alpha.xml
│ ├── anim_entrance_translate_back.xml
│ ├── anim_entrance_translate_continue.xml
│ ├── anim_entrance_translate_left.xml
│ ├── anim_entrance_translate_right.xml
│ ├── anim_out_alpha_0.xml
│ ├── anim_out_alpha.xml
│ ├── anim_out_translate_back.xml
│ ├── anim_out_translate_continue.xml
│ ├── anim_out_translate_left.xml
│ └── anim_out_translate_right.xml
└── drawable-hdpi
├── selector_btn_back.xml
├── selector_btn_continue.xml
├── selector_btn_endless_mode.xml
├── selector_btn_play_level_mode.xml
├── selector_btn_skill.xml
└── selector_btn_updata_equip.xml
53 directories, 269 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论