-
flappybird
刚刚学完Cocoos2dx之后编写的FlappyBrid小游戏。玩法一样,只是有些数值可能设置的没有原版那么好。可以编译到Android上的。(Just after completing Cocos2dx written Flappy Bird game. Play the same, but some values are not as good as the original may be set. It can be compiled to Android s.)
- 2015-11-20 14:33:11下载
- 积分:1
-
android_key
android新增按键值流程,从底层到中间层再到上层app,对linux和android framework有个一定的认识(android key value added processes, from the bottom to the middle layer and then to the upper app, android framework for linux and have a certain understanding of)
- 2013-10-09 11:34:19下载
- 积分:1
-
pubu
Android项目源码带瀑布流的旅游指南应用是一款旅游型的APP,是旅游目的地攻略指南,可以自动定位到城市,景点,餐馆,酒店,还可以分享旅游经验,与参与者互动。该项目的架构合理,有详细的注解,其中引入了第三方的瀑布流项目,以源代码的形式直接加入,很好的学习材料。默认使用UTF-8编码,编译版本为4.3(The Android project source code with a waterfall flow guide application is app a type of tourism, tourism destination strategy guide, can automatically locate the city, attractions, restaurants, hotels, can also share travel experiences, to interact with the participants. The framework of the project is reasonable, there are detailed notes, which introduces the third side of the waterfall flow project, in the form of source code to join, a good learning materials. The default use of UTF-8 code, the compiler version is 4.3)
- 2020-12-27 16:59:03下载
- 积分:1
-
SVM多分类 机器学习示例源码(MachineLearning)
SVM多分类 机器学习示例源码(MachineLearning)
- 2019-03-31下载
- 积分:1
-
theKingOfMedicine
安卓射击类小游戏,希望对安卓初学者研究有帮助(Andrews Shooting game, Andrews beginners)
- 2020-12-21 15:39:08下载
- 积分:1
-
UCWEB
安卓实现仿UCWEB样式源码,欢迎大家来下载(Andrews imitation UCWEB source)
- 2013-06-29 12:23:20下载
- 积分:1
-
一种类似于Excel表格(网上找的,感觉还不错)
一种类似于Excel表格(网上找的,感觉还不错)
- 2014-04-04下载
- 积分:1
-
Android VideoView的控件播放视频简单例子
Android VideoView的控件播放视频简单例子,这是最近在写一个Android项目时,需要用到视频播放的功能,索性直接使用了Android系统内自带的VideoView控件,对功能要求不太多,所以也可以满足应用,压缩包内包括了两个VideoView用法的例子:
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// 获取界面上VideoView组件
videoView = (VideoView) findViewById(R.id.video);
// 创建MediaController对象
mController = new MediaController(this);
File video = new File("/mnt/sdcard/test.mp4");
if(video.exists())
{
videoView.setVideoPath(video.getAbsolutePath());
// 设置videoView与mController建立关联
videoView.setMediaController(mController);
// 设置mController与videoView建立关联
mController.setMediaPlayer(videoView);
// 让VideoView获取焦点
videoView.requestFocus();
}
}
- 2022-05-10 21:43:22下载
- 积分:1
-
Android 图片加上水印效果
Android 图片加上水印效果
- 2014-09-28下载
- 积分:1
-
Android 经典蓝牙(Classic Bluetooth)和低功耗蓝牙(BLE)
从蓝牙4.0开始包含两个蓝牙芯片模块:传统/经典蓝牙模块(Classic Bluetooth,简称BT)和低功耗蓝牙(Bluetooth Low Energy,简称BLE) 经典蓝牙是在之前的蓝牙1.0,1.2,2.0 EDR,2.1 EDR,3.0 EDR等基础上发展和完善起来的, 而低功耗蓝牙是Nokia的Wibree标准上发展起来的,是完全不同两个标准。1.经典蓝牙模块(BT)泛指蓝牙4.0以下的模块,一般用于数据量比较大的传输,如:语音、音乐、较高数据量传输等。经典蓝牙模块可再细分为:传统蓝牙模块和高速蓝牙模块。传统蓝牙模块在2004年推出,主要代表是支持蓝牙2.1协议的模块,在智能手机爆发的时期得到广泛支持。高速蓝牙模块在2009年推出,速率提高到约24Mbps,是传统蓝牙模块的八倍。 传统蓝牙有3个功率级别,Class1,Class2,Class3,分别支持100m,10m,1m的传输距离2.低功耗蓝牙模块(BLE)泛指蓝牙4.0或更高的模块,蓝牙低功耗技术是低成本、短距离、可互操作的鲁棒性无线技术,工作在免许可的2.4GHz ISM射频频段。因为BLE技术采用非常快速的连接方式,因此平时可以处于“非连接”状态(节省能源),此时链路两端相互间只是知晓对方,只有在必要时才开启链路,然后在尽可能短的时间内关闭链路(每次最多传输20字节)。低功耗蓝牙无功率级别,一般发送功率在7dBm,一般在空旷距离,达到20m应该是没有问题
- 2020-12-07下载
- 积分:1