-
一种类似于Excel表格(网上找的,感觉还不错)
一种类似于Excel表格(网上找的,感觉还不错)
- 2014-04-04下载
- 积分:1
-
CrazyBall
android 简单游戏 疯狂足球 简单滴模拟了足球运动(Crazy football game android simple simulation of the sport simply drops)
- 2011-11-23 17:52:16下载
- 积分:1
-
Android 高仿【优酷】圆盘旋转菜单的实现
Android 高仿【优酷】圆盘旋转菜单的实现,简单但是很酷的菜单
- 2022-01-25 19:35:37下载
- 积分:1
-
海康威视远程监控Android代码
工程里包含了海康威视android sdk(网络库+播放库)
官网上只有android 播放库下载,没有android 网络库下载哦(这个可是本人自己反编译的,保证能用)
可以下载看看:海康威视远程监控Android端APP开发初探
海康威视远程监控Android代码,手机app代码
- 2022-09-30 02:25:07下载
- 积分:1
-
Android 二维码生成及解析 NFC读取及语音识别功能
个人练手demo,
1、实现了科大讯飞语音识别的sdk接入,成功实现线上语音识别。
2、实现了二维码的生成和解析工能,可以识别内存中的二维码图片。
3、实现NFC功能,可通过手机NFC读取卡片信息。
- 2022-02-21 14:52:53下载
- 积分:1
-
Soruce_Code_Of_Secret_Of_Android_Application_Devel
《Android应用开发揭秘》本书内容全面、循序渐进、深入浅出,实战性强,权威性毋庸置疑!全书一共分为5个部分:第一部分是准备篇,第二部分是基础篇,讲解了Android开发的相关知识,第三部分是实例篇,第四部分是高级篇,第五部分是扩展篇。(" Android Application Development Hood" of the book is comprehensive, step by step, easy to understand, combat and strong, authoritative doubt! The book is divided into a total of five parts: The first part is to prepare papers, articles based on the second part is to explain the Android development of knowledge, the third part is the instance of the article, the fourth part is the advanced part, Part V is to expand articles.)
- 2020-06-25 22:40:02下载
- 积分:1
-
发布活动
可用于图片上传,发布活动 点赞以及收藏 采用bmob云服务器
- 2022-01-23 11:21:51下载
- 积分:1
-
android 录制屏幕
一个简单的实现屏幕录制的功能,设个android5.0及以上使用,不需要root
- 2023-07-28 00:40:04下载
- 积分:1
-
android开发入门
说明: android应用开发很好的入门资料,非常适合初学者。(An excellent introduction to android application development)
- 2019-02-17 15:11:49下载
- 积分:1
-
Android 使用语音识别的例子
Android 使用语音识别的例子,下面是核心的代码:
private void startVoiceRecognitionActivity()
{
//通过Intent传递语音识别的模式
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
//语言模式和自由形式的语音识别
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
//提示语音开始
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
//开始执行我们的Intent、语音识别
startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);
}
当语音结束时的回调函数onActivityResult
- 2023-06-19 16:45:03下载
- 积分:1