-
健康生活,养身助手
完成了基本的界面,包括主界面,图形化界面等。页面比较人性化,操作简单实用。整体框架实用滑动窗口的设计理念,利用最小的空间实现极大地内容呈现。
- 2022-10-11 04:15:03下载
- 积分:1
-
android 开发框架 实例源码下载 ecloud
android 开发框架 实例源码下载 ecloud
- 2014-12-06下载
- 积分:1
-
Andriod实现翻书效果 示例代码下载
又一个翻书效果,这个翻页效果如下图
- 2013-02-03下载
- 积分:1
-
Python - OBDII Simulator for Fun2Drive
Python OBDII 模拟器用于测试 Fun2Drive Android 应用程序
- 2023-06-01 06:00:03下载
- 积分:1
-
Android带AI的局域网对战五子棋游戏
Android编写的支持AI技术的局域网对战五子棋游戏,人机对战响应、人人对战响应、退出游戏响应、更多游戏响应则跳转到相应的游戏下载界面。
同时游戏中还涉及到消息处理(弹出一些提示消息等)、退出房间响应、棋盘监听(主要是监听游戏是否开始)、重置棋手信息、发送处理消息、通讯监听(主要是监听请求进入游戏的对手信息)、退出当前游戏(如果是主机身份请求退出游戏界面 则撤销建立的主机 返回准备界面)等的响应处理。
- 2022-08-22 07:40:00下载
- 积分:1
-
Android PathEffect 效果实例
从一本书中得到的Android PathEffect 效果实例,不多说了,直接把关键代码帖出来吧,需要完整代码的可下载本源码,运行的效果请参见下边的截图所示,运行时,可看到多条像流水一样的路径曲线,下面是代码:
// 定义画板为白色
canvas.drawColor(Color.WHITE);
pe[0] = null;
// 此PathEffect为圆滑的弧形
pe[1] = new CornerPathEffect(10);
// 离散的线
// 第一个参数为离散在弧上的间距
// 第二个参数为离散的程度
pe[2] = new DiscretePathEffect(3, 10);
// Dash为破折号的意思。 应该是破这行
// 其中第一个参数是new float[]{} 表示其中的间隔和距离
// phase表示相位
pe[3] = new DashPathEffect(new float[] { 20, 5, 5, 20 }, phase);
//先建立一个Path 然后创建PathDashPathEffect对象 其中p为path
Path p = new Path();
p.addRect(0,0,8,8,Path.Direction.CW);
pe[4] = new PathDashPathEffect(p, 12, phase, PathDashPathEffect.Style.ROTATE);
//此方法表示两个组合的PathEffect
pe[5] = new ComposePathEffect(pe[2], pe[4]);
//结果和pe[5]类似
pe[6] = new SumPathEffect(pe[4], pe[3]);
// 开始画七条线
for (int i = 0; i < pe.length; i++) {
// 如果没有paint.setPathEffect(),那么系统默认为paint.setPathEffect(null);
paint.setPathEffect(pe[i]);
paint.setColor(colors[i]);
canvas.drawPath(path, paint);
//使画板平移
- 2022-07-25 12:05:42下载
- 积分:1
-
Andriod_Calculator
Andriod版本下的简易计算器,可进行加减乘除、对数等数学基本运算(Under the android version of the simple calculator, can be, logarithmic mathematical basic operation for addition, subtraction, multiplication, and division)
- 2014-12-11 15:21:01下载
- 积分:1
-
nfc卡测试
nfc卡测试 测试可以读取哪几种卡,读取种类
- 2022-02-09 18:13:37下载
- 积分:1
-
Audio record and play.
语音录制播放功能
简单功能,仅供参考.-Audio record and play.
- 2023-05-17 20:00:03下载
- 积分: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