-
droptea
说明: 仿qq聊天界面,阻尼效果,拖动超出屏幕后自动弹回。(Imitate QQ chat interface, damp effect, drag out of the screen automatically rebound.)
- 2020-06-21 15:40:02下载
- 积分:1
-
com
SignalA修改后的源码,支持android2.2及以上(SignalA modified source code, support android2.2 and above)
- 2013-11-04 13:08:31下载
- 积分:1
-
android 上传文件实例 附完整源码
简单的上传实例,适合初学者,一看就懂
- 2013-02-26下载
- 积分:1
-
lcIPC_SurfaceView
surface,H264,解码,显示,网络流,播放(surface, H264)
- 2013-08-06 10:18:16下载
- 积分:1
-
android 群聊实例源码下载
android 群聊实例源码下载
- 2015-01-28下载
- 积分:1
-
sinamicro1
新浪微博的安卓客户端,这个客户端是我自己做的,很有特点~(The Sina microblogging Andrews clients, this client is my own doing, is very characteristic to)
- 2012-09-26 17:56:42下载
- 积分:1
-
android 热修复的demo
自己动手写了一个基于AndHotFix的Demo,符合平常的使用,使用的方法提取到一个专门的工具类中,在自己使用时,可单独抽出来。建议看不懂项目的朋友,可以先看下官网的sdk文档,然后对照着这个demo运行。
- 2022-06-02 01:18:01下载
- 积分:1
-
Soduku android
本源码是基于android2.3平台的数独游戏,上层界面采用java语言来写,底层核心算法采用C++,可以实现对数独解法的提示,兼有提示最有可能填出来的空格
- 2022-10-28 06:35:04下载
- 积分:1
-
finalassignment
android 移动应用系统设计
1、最后提交两部分内容
a. 对一个功能的实现+实验报告(该项作为平时作业成绩)
- 可以选择上课中所演示的任意功能,截图完成实验报告
- 需要提交程序 + 3-5页的实验报告
b. 从以下网址下载一个app源码,或者其它地方的源码,对代码进行详细解析(该项作为期末课程考核成绩)
- 推荐下载网址为:http://www.devstore.cn/code/list/pn1-or0.html
- 需要提交下载的源码,和对该源码实现的分析报告,不少于8页
2、将所有内容按下面两个目录进行存放,打包以“学号+姓名” 命名,上传到作业ftp
- 实验
- 课程综合(android mobile application system design 1, the final submission of two parts a test report achieve+ a function (such as the usual job performance)- You can any function demonstrated in class, theme complete test report- to be submitted program+ Experimental report b 3-5 pages downloaded the following URL an app source code, or elsewhere source, detailed analysis of the code (such as the end of course examination results)- Recommended download site at: http: //www.devstore .cn/code/list/pn1-or0.html- to submit to download the source code, and analysis of the source code to achieve, at least 8 2, all the content stored in the following two directories, packed to " learn No.+ name " name, upload to job ftp- Experiment- Integrated Course)
- 2015-11-17 10:36:12下载
- 积分:1
-
Android SQLiteOpenHelper 类代码
Android SQLiteOpenHelper 类代码,这同样是一个简单级别的SQLite实例,主要教你一些基础的SQLite用法,本源码通过编写一个简单的词汇添加小程序,让你了解如何向SQLLITE中添加词汇,查找词汇,查询的sql语句如何编写,以及如何创建一个SQLSite数据表等。相对简单,编译后的运行效果,请看下边的截图。添加内容和查询内容的代码,如下示:
//添加词汇
addWordBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
inflateInsert(mydb.getReadableDatabase(),wordEdit.getText().toString(),detailEdit.getText().toString());
}
});
//查找词汇
seachWordBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//查询的sql
String querySql = "select * from mydb where word like ?";
Cursor cursor = mydb.getWritableDatabase().rawQuery(querySql, new String[]{
"%"+seachWordEdit.getText().toString() + "%"
});
ArrayList> list = converCursortoList(cursor);
Intent intent = new Intent(Dict.this, show.class);
Bundle bundle = new Bundle();
bundle.putSerializable("list", list);
intent.putExtras(bundle);
startActivity(intent);
}
- 2022-01-26 07:55:58下载
- 积分:1