-
Swipe Screen for Android
此应用程序显示刷卡屏幕。谁希望在你的应用程序中使用此方法。
- 2022-01-31 10:34:33下载
- 积分:1
-
奇艺APP高仿UI设计
这是一个高仿奇艺安卓客户端的UI设计,非常适合安卓UI设计的学习和模仿。这是一个高仿奇艺安卓客户端的UI设计,非常适合安卓UI设计的学习和模仿。这是一个高仿奇艺安卓客户端的UI设计,非常适合安卓UI设计的学习和模仿。这是一个高仿奇艺安卓客户端的UI设计,非常适合安卓UI设计的学习和模仿。通过这个可以了解大公司的安卓应用的UI设计方法,是一个和那不错的资源。
- 2022-08-09 12:41:38下载
- 积分:1
-
二维码扫描
有空的时候,自己封装的很好用,不要忘了加权限,不然会闪退
- 2022-04-29 05:26:31下载
- 积分:1
-
fishing-Daren-source-code
安卓 捕鱼达人源代码 喜欢的朋友可以自己下载(fishing Daren source code)
- 2021-01-06 23:08:53下载
- 积分: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 与 JS 交互 例子源码下载
android 与 JS 交互 例子源码下载
- 2013-09-10下载
- 积分: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
-
TakePicAndGallery-master
说明: Android拍照封装,比较全面,支持android7.0(Android Photo Encapsulation, more comprehensive, supporting Android 7.0)
- 2020-06-20 05:40:01下载
- 积分:1
-
android 拍照上传例子源码
android 拍照上传例子源码
- 2015-06-10下载
- 积分:1
-
android 自定义对话框 实例源码下载
android 自定义对话框 实例源码下载
- 2014-08-21下载
- 积分:1