-
FingerPaint
说明: 使用android手机系统实现的手绘功能(Implementation of the system using android phone features hand-painted)
- 2011-03-29 08:34:26下载
- 积分:1
-
mvp模式之登录demo
对于MVP(Model View Presenter),大多数人都能说出一二:“MVC的演化版本”,“让Model和View完全解耦”等等。本篇博文仅是为了做下记录,提出一些自己的看法,和帮助大家如何针对一个Activity页面去编写针对MVP风格的代码。从简单的demo了解认识mvp。
- 2022-02-14 17:22:38下载
- 积分:1
-
AhHuiUniversity
随着经济与科技的快速发展,智能手机一步步进入普通人得生活,它将成为人们获取信息的主要设备,因此基于Android手机的手机地图服务需求越开越迫切,为外出旅游的人们提供了极大地便利。Android是Google开发的基于Linux平台的开源手机操作系统。它包括操作系统、中间件、用户界面和应用程序,是为移动终端打造的真正开放和完整的移动软件。本文对目前应用的Symbian、WindowsMoblie、Mac OS X和Android平台的现状进行了分析与比较,主要阐述以面向对象程序开发语言JAVA,以eclipse为开发工具,基于智能手机Android之上设计一个导览系统。本文主要介绍安徽大学,界面友好 、操作便捷,具有良好的可扩展性和可维护性,系统经过测试,可以稳定运行,能够满足手机用户基本的地图服务需求。(With the rapid development of economy and technology,Smartphone enters into the lives of ordinary people step by step,it will become the main device to obtain information,Therefore,based on the Android mobile phone mobile map service needs become more and more urgent for people who travel offers great convenience.Android is the Google development opens the source handset operating system based on Linux platform. It includes the operating system,the Middleware,he user interface and the application procedure. It is for the mobile terminal to create a truly open and complete mobile software. In this thesis,there is a analysis and comparion about the status of the current applide platforms like Symbiam ,WindowsMoblie,Mac OS X and Android ,this thesis Mainly expounds the development of object-oriented programming language java, eclipse as a
development tool, to design a navigation system-based smartphone on Android. This paper mainly introduces the anhui university,user-friendly,easy to)
- 2013-10-30 13:56:55下载
- 积分:1
-
声波通信
声波通信,短距离,利用声波频率实现声波聊天通信,可以模拟支付宝声波支付里面的咻咻实现支付,或者短距离wifi配置快速上网
- 2022-01-31 13:29:04下载
- 积分:1
-
《Android基础教程》的随书源码,可以方便学习该书的时候手动敲入源码出现错误时进行对比,也可以单独下载作为入门进行学习。...
《Android基础教程》的随书源码,可以方便学习该书的时候手动敲入源码出现错误时进行对比,也可以单独下载作为入门进行学习。-" Android-based tutorial" in the book with source code, you can easily learn from the book when manually typing error when comparing source code can also be downloaded as a separate entry-learning.
- 2022-01-25 23:15:32下载
- 积分:1
-
安卓游戏PaperBober
这个游戏是Android的游戏。该项目使用Java语言与cocos2d的库。这个游戏的内容是一只鸟炸弹CITH。
- 2022-03-21 03:14:27下载
- 积分:1
-
YI-alarm
手机端提醒 各种功能 提醒 备忘录 包括电影 彩票 日程(Mobile client reminder memo)
- 2013-06-25 16:32:27下载
- 积分:1
-
Letao
Android模仿乐淘的应用程序分析源码,应用程序编程,很好的参考资料。(The application of Android mimic Le Amoy source analysis, application programming, a good reference.)
- 2013-11-11 10:25:51下载
- 积分:1
-
AutoLoadingListView01
android 异步加载图片,关键在于刷新,更新页面。(android asynchronous load images, the key is to refresh, update the page.)
- 2012-09-10 12:13:21下载
- 积分:1
-
Android MyThread线程用法实例 切换图片
Android 使用MyThread创建线程,这是用法实例源码,本例中使用线程来控制切换图片
public void onCreate(Bundle savedInstanceState) {//重写的onCreate方法
super.onCreate(savedInstanceState);
setContentView(R.layout.main);//设置当前的用户界面
myImageView = (ImageView) findViewById(R.id.myImageView);//得到ImageView的引用
MyThread myThread = new MyThread(this);//初始化MyThread线程
myThread.start();//启动线程
}
public void run() {//重写的run方法
while(true){//循环
activity.myHandler.sendEmptyMessage((what++)%4);//发送消息
try{
Thread.sleep(2000);//睡眠
}
catch(Exception e){//捕获异常
e.printStackTrace();//打印异常信息
}
}
}
- 2022-03-24 06:51:47下载
- 积分:1