-
基于安卓Android小型仓库管理系统APP的设计与实现(MySQL)(含录像)(毕业论文9000字,安卓APP客户端和JAVA服务端程序代码,MySQL数据库)
基于安卓Android小型仓库管理系统APP的设计与实现(MySQL)(含录像)(毕业论文9000字,安卓APP客户端和JAVA服务端程序代码,MySQL数据库)
- 2019-06-08下载
- 积分:1
-
CityWeather
安卓平台下的一个简单的城市天气预报小程序,可供学习安卓的朋友作参考!(Andrews platform under a simple weather forecasts for cities program available for Andrews friends and as a reference!)
- 2012-08-18 13:39:22下载
- 积分:1
-
android股票查询软件
这是一个基于安卓系统开发的股票查询软件,能够实时查到各个股票的情况,给各位开发者参考下,根据它的原理可以做出各种各样的app,这只是一个参考,更多的是让开发者知道网络编程的原理。
- 2022-04-24 04:09:19下载
- 积分:1
-
weather
Android下天气小插件,可以实现对当前天气的检测,以及对未来几天天气的预测(Android weather widget, you can achieve detection of current weather and weather forecast for the next few days)
- 2014-05-28 16:12:13下载
- 积分: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
-
android 播放器源码!
VLC 播放器是一款十分优秀免费的播放器,非常适合二次开发,调用了jni和c等底层的源码,播放效果十分流畅,可实现了播放器的基本功能,在网络流畅的情况下,无卡顿! &
- 2022-05-28 08:11:02下载
- 积分:1
-
PhoneGap
PhoneGap.zip,方便快捷开发Android,IOS客户端的开发(PhoneGap.zip, convenient and efficient development of developing Android, IOS clients)
- 2014-02-19 10:37:55下载
- 积分:1
-
MyQQZWFWeibo
用Android开发的微博,用来转播、点评和发微博(Microblogging with Android development for broadcast, reviews and hair microblogging)
- 2014-01-08 09:53:45下载
- 积分:1
-
颜色选择 Android
这是简单的源代码学习 android 布局,布局中有更多的按钮颜色名称名称颜色按下背景颜色时将自动更改为名称的颜色。快乐学习 android。保持编码,成为一个好的程序员。
- 2022-04-22 23:54:52下载
- 积分: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