-
gallery_load_layout
andriod多控件滑动gallery加载布局文件(滑动)(the andriod more than the control slide, gallery load the layout file (slide). rar)
- 2012-07-03 14:31:32下载
- 积分:1
-
android ilbc语音库移植
android voip网络电话中经常使用的一种语音库的移植和调试,内含整个ilbc的c语音源码,整个项目可在adt集成的eclipse下正常运行。
- 2022-05-12 22:06:52下载
- 积分:1
-
动态加载本地皮肤包实现换肤效果
应用背景有需要对app主题风格进行变换的需求的可以借鉴关键技术通过加载本地已有的.shin文件进行app皮肤的切换
- 2022-09-06 21:55:04下载
- 积分:1
-
Android 简单播放歌曲功能演示
Android 简单播放歌曲功能演示,播放本地音乐,非网络播放,可播放、暂停,运行效果如截图所示,在编写时,要注意以下代码:
int status = 1;//当前的状态,1没有声音播放 ,2 正在播放声音,3暂停
ImageButton start;//播放、暂停按钮
ImageButton stop;//停止按钮
ActivityReceiver activityReceiver;
int status = 1;//当前的状态,1没有声音播放 ,2 正在播放声音,3暂停
public void onCreate(Bundle savedInstanceState) {//重写的onCreate方法
super.onCreate(savedInstanceState);
setContentView(R.layout.main);//设置当前的用户界面
start = (ImageButton) this.findViewById(R.id.start);//得到start的引用
stop = (ImageButton) this.findViewById(R.id.stop);//得到stop按钮的引用
start.setOnClickListener(this);//为按钮添加监听
stop.setOnClickListener(this);//为按钮添加监听
activityReceiver = new ActivityReceiver();//创建BroadcastReceiver
IntentFilter filter = new IntentFilter();//创建IntentFilter过滤器
filter.addAction("wyf.ytl.update");//添加Action
registerReceiver(activityReceiver, filter);//注册监听
Intent intent = new Intent(this, MyService.class);//创建Intent
startService(intent);//启动后台Service
}
- 2023-08-23 12:30:03下载
- 积分:1
-
可以联网中国象棋Android源码
基于安卓的象棋项目源码,为联网游戏而设计的。配有java服务端,不过只能单开。我没有测试具体的功能,感兴趣的可以自己链接数据库试试吧。下面是运行指南和开发设计文档。
本源码分为客户端和服务端
客户端编译即可运行,socket连接为:127.0.0.1:9898
运行服务端时,需要使用MySQL建表,建表语句如下:
create database chinachess;
use chinachess;
create table user(
id int primary key auto_increment,
name char(10) unique not null,
password char(16) not
null, head int default 0,
score int default 0,
victory_count int default 0,
defeat_count int default 0, draw_count int default 0, join_time datetime
) charset utf8 collate utf8_general_ci;
服务端DbUtil.java里面有连接数据库的配置
功能
1:登陆
2.注册
3.消息
4:匹配游戏
5:走棋
6:求和
7:同意求和
* 8:悔棋
* 9:同意悔棋
* 10:认输
- 2022-03-11 15:32:55下载
- 积分:1
-
wechat-master
高仿微信的app源码,有myeclipse版本和android studio版本,ui与接口都有(
High imitation WeChat app source code, there myeclipse version and android studio version, ui and interfaces have)
- 2020-06-30 13:20:02下载
- 积分:1
-
Android下使用Sqlite 增删改查功能,含数据库操作类【附源码】
每个应用程序都要使用数据,Android应用程序也不例外,Android使用开源的、与操作系统无关的SQL数据库 --大名鼎鼎的SQLite。SQLite是一款轻量级数据库,它的设计目的是嵌入式,而且它占用的资源非常少,在嵌入式设备中,可能只需要几百KB,这也是 Android 系统采用 SQLite 数据库的原因之一吧。简介轻量级使用 SQLite 只需要带一个动态库,就可以享受它的全部功能,而且那个动态库的尺寸想当小。独立性SQLite 数据库的核心引擎不需要依赖第三方软件,也不需要所谓的“安装”。隔离性SQLite 数据库中所有的信息(比如表、视图、触发器等)都包含在一个文件夹内,方便管理和维护。跨平台SQLite 目前支持大部分操作系统,不至电脑操作系统更在众多的手机系统也是能够运行,比如:Android。多语言接口SQLite 数据库支持多语言编程接口。安全性SQLite 数据库通过数据库级上的独占性和共享锁来实现独立事务处理。这意味着多个进程可以在同一时间从同一数据库读取数据,但只能有一个可以写入数据。
- 2013-02-23下载
- 积分:1
-
Android---OA办公源码手机APP源码
应用背景Android---OA办公源码手机APP源码,最近看到很多朋友在找手机OA的办公源代码,我就整理一下,这是一套完整的手机OA办公系统源码,下载来来可以直接跑的!关键技术
这是一套完整的手机OA办公系统源码,Android---OA办公源码手机APP源码,主要运用了一下知识点:
1、Android开发语言;
2、文档说明+图片说明+注释;
3、适合广大学员们学习和交流
- 2022-01-28 09:06:25下载
- 积分:1
-
android 基于xmpp的即时通信APP
简单的即时通讯聊天软件,基于xmpp+openfire+smack。这里只给出了android 的代码,对于openfire直接百度就可以了。
- 2022-02-25 16:14:33下载
- 积分:1
-
beijingyinyueshixianfangfa
android 的 背景音乐 是 实现方法 ,游戏里面 可以用此方法来实现背景音乐(android' s background music is implementation, the game which you can use this method to achieve the background music)
- 2011-08-08 10:36:40下载
- 积分:1