登录
首页 » Android » 安卓游戏PaperBober

安卓游戏PaperBober

于 2022-03-21 发布 文件大小:14.98 MB
0 239
下载积分: 2 下载次数: 1

代码说明:

这个游戏是Android的游戏。该项目使用Java语言与cocos2d的库。这个游戏的内容是一只鸟炸弹CITH。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • MyQQZWFWeibo
    用Android开发的微博,用来转播、点评和发微博(Microblogging with Android development for broadcast, reviews and hair microblogging)
    2014-01-08 09:53:45下载
    积分:1
  • 安卓简单蓝牙打印在热敏打印机上
    这是我的项目是为安卓工作室转换的日食。蓝牙打印机使用不同功能的简单逃脱X330收据打印,如粗体字体,打印一维条码的例子和更多。这个项目只允许使用蓝牙,所以对客户非常友好。一个挑战是仍就是X330印刷位图图像。
    2022-05-05 20:00:09下载
    积分:1
  • TestXalan
    Test Suite Source Code for Andriod.
    2013-11-21 22:02:03下载
    积分:1
  • nfccard
    安卓NFC读写非接触IC卡是一款基于非接触IC卡的NFC应用,支持符合ISO7816—3、ISO15693和Felica等国际标准卡片的读取,能够读取的电子标签包括公交卡、银行卡、图书馆射频标贴等。NFCard可以用来读取电子钱包(主要是公交卡)中未加密的余额、交易记录、标识等信息。该软件使用了模块化设计,方便扩充支持其他特殊类型的卡片协议和指令。(Android NFC read write non-contact IC card is a NFC application based on Contactless IC card, support in line with the international standard ISO7816- 3, iso15693 and felica etc. card read, to read electronic tag includes bus card, bank card, library RF stickers and so on. NFCard can be used to read the electronic wallet (mainly public transport card) in the balance of the encryption, transaction records, identification and other information. The software uses a modular design to facilitate the expansion of support for other special types of card protocols and instructions.)
    2016-07-05 20:12:46下载
    积分:1
  • ym_java-androidIM
    基于android的IM聊天软件源码!!(android IM CHAT)
    2012-01-17 09:59:25下载
    积分:1
  • task9
    自己制作了一个日历,是用calendarView写的,可以添加事务。但由于我没写数据库,所以还不能保存事务,只是给大家写了一个模板吧,大家可以连本地数据库,也可以链接云端。(I made a calendar to add transactions. But because I did not write the database, so I can not save the transaction, just write a template for you, you can connect to the local database, you can also link to the cloud.)
    2020-06-21 14:20:02下载
    积分:1
  • android消息推送,包括客户端和服务端程序
    android消息推送,包括客户端和服务端程序
    2022-01-25 16:32:39下载
    积分:1
  • 滑动选择或滑动浏览的卡片效果
    应用背景滑动选择卡片效果,实现左滑右滑选择图片效果,有需要的可以借鉴关键技术自定义滑动卡片,实现滑动监听,表露滑动方法给外界调用
    2023-07-23 02:30:03下载
    积分:1
  • android 播放网络MP3 音乐播放
    简单的基本功能,实测可行。 核心代码:package com.sharpandroid.music.activity;import java.io.IOException;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.ImageButton;import android.widget.SeekBar;import android.widget.TextView;import com.sharpandroid.music.R;import com.sharpandroid.music.StreamingMediaPlayer;public class MediaPlayer extends Activity { private Button streamButton; private ImageButton playButton; private boolean isPlaying; private TextView playTime; private StreamingMediaPlayer audioStreamer; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); initControls(); } private void initControls() { playTime=(TextView) findViewById(R.id.playTime); streamButton = (Button) findViewById(R.id.button_stream); streamButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { startStreamingAudio(); }}); playButton = (ImageButton) findViewById(R.id.button_play); playButton.setEnabled(false); playButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { if (audioStreamer.getMediaPlayer().isPlaying()) { audioStreamer.getMediaPlayer().pause(); playButton.setImageResource(R.drawable.button_play); } else { audioStreamer.getMediaPlayer().start(); audioStreamer.startPlayProgressUpdater(); playButton.setImageResource(R.drawable.button_pause); } isPlaying = !isPlaying; }}); } private void startStreamingAudio() { try { final SeekBar progressBar = (SeekBar) findViewById(R.id.progress_bar); if ( audioStreamer != null) { audioStreamer.interrupt(); } audioStreamer = new StreamingMediaPlayer(this, playButton, streamButton, progressBar,playTime); audioStreamer.startStreaming("http://192.168.64.1/xa.mp3",5208, 216); streamButton.setEnabled(false); } catch (IOException e) { Log.e(getClass().getName(), "读取音乐出错!", e); } }}
    2014-05-26下载
    积分:1
  • Android CircleProgress 圆形进度条制作实例
    Android CircleProgress 制作完整的圆形进度条的实例下载,十分漂亮,也很实用的进度条效果,在UI上定义了多个圆形进度条,主进度条和子进度条,每个颜色不一样,大小也不同,当进度条工作时,圆形像扇形一样铺满整个圆,寓意进度完成。单击“增加主进度条”可以增加一个进度条的演示,当然也可增加一个子进度条,如果你对Android创建进度条的方法和思路不熟悉,本源码是一个不错的范例。
    2022-06-14 02:18:58下载
    积分:1
  • 696516资源总数
  • 106658会员总数
  • 16今日下载