-
The-Android-100-problem-sets
Android&架構&敏捷_高煥堂100問題集_Part_A_ok
进程,线程,JNI,IPC基础(The Android& Architecture & agile _ Gao Huantang 100 problem sets _Part_A_ok)
- 2014-07-02 16:22:23下载
- 积分:1
-
sphinxbase-0.8-win321
这是android语音识别引擎源码,希望对大家有所帮助。(This is the android source speech recognition engine, we want to help.)
- 2014-02-11 12:44:50下载
- 积分:1
-
7+8BottomNavigationView+通讯录初步资源和代码
说明: Android studio 7+8BottomNavigationView+通讯录初步资源和代码(Android studio 7+8BottomNavigationView)
- 2020-05-05 09:02:14下载
- 积分:1
-
Android indexOf搜索文件示例
Android 系统中搜索文件的一个简单例子,功能和Windows搜索文件相似,不过实现上就差别大了:先载入main.xml Layout ,初始化对象:
mKeyword=(EditText)findViewById(R.id.mKeyword);
mButton=(Button)findViewById(R.id.mButton);
mResult=(TextView) findViewById(R.id.mResult);
然后定义一个方法,将mButton添加onClickListener,取得输入的关键字,再创建搜索文件的method:
private String searchFile(String keyword)
{
String result="";
File[] files=new File("/").listFiles();
for( File f : files )
{
if(f.getName().indexOf(keyword)>=0)
{
result+=f.getPath()+"
";
}
}
if(result.equals("")) result="找不到文件!!";
return result;
- 2023-07-23 19:15:03下载
- 积分:1
-
AndroidSQLite
android sqlite数据库操作,实现数据库的创建,查找,删除更新操作(android sqlite database operations to achieve the creation of the database, find, delete, update operations)
- 2012-08-16 17:37:49下载
- 积分:1
-
Android_Binder_IPC
android binder通信介绍。binder 通信是一种client-server 的通信结构,
1. 从表面上来看,是client 通过获得一个server 的代理接口,对server 进行直接调用;
2. 实际上,代理接口中定义的方法与server 中定义的方法是一一对应的;
3.client 调用某个代理接口中的方法时,代理接口的方法会将client 传递的参数打包成为Parcel 对象;
4. 代理接口将该Parcel 发送给内核中的binder driver.
5.server 会读取binder driver 中的请求数据,如果是发送给自己的,解包Parcel 对象,处理并将结果返(android binder communication。)
- 2013-11-13 18:41:05下载
- 积分:1
-
LumaQQME
Android系统中的LumaQQ源代码,比较详细的源代码,已经在Android系统中使用了,比较权威专业的源代码。(The Android system in the LumaQQ of source code, source code, has been used in the Android system, the source code of the authoritative professional.)
- 2013-04-11 18:35:36下载
- 积分:1
-
android 幸运大转盘 实例源码下载
手动滑动转盘。
- 2014-09-01下载
- 积分:1
-
GGMusic
说明: 可实现了一个简单的音乐播放器,可以播放音乐,暂停等(Can achieve a simple music player, can play music, pause, etc.)
- 2020-06-19 23:20:02下载
- 积分:1
-
Android移动开发一本就够源码
Android移动开发一本就够源码
- 2014-09-22下载
- 积分:1