-
java加密apk
java 对apk 文件进行加密,进行字节码变换的工具,运行把apk的目录,需要自己修改成,你的自己的目录。
- 2022-11-16 20:45:08下载
- 积分:1
-
android 创建桌面快捷方式源代码
android 创建桌面快捷方式源代码
- 2014-10-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
-
[Androidtongxunlu
android 开发视频教程中的一个通讯录源码。是一个完整的通讯录源码。(video tutorial android development of a source book. Is a complete address book source.)
- 2011-07-29 11:55:02下载
- 积分:1
-
service前台服务
前台服务和普通服务的最大区别在于,它会一直有一个正在运行的图标在系统的状态栏显示,下拉状态栏后可以看到更加详细的信息,非常类似于通知的效果。比如墨迹天气,它的服务在后台更新天气数据的同时,还会在系统状态栏一直显示当前的天气信息。
- 2022-08-07 22:37:39下载
- 积分:1
-
CSDN
基于 java android 开发的一个抓取csdn网站新闻的客户端,类似于网易新闻版本(Based on java android developed a crawl csdn Site news client, similar to Netease news release)
- 2015-06-03 13:15:16下载
- 积分:1
-
MyAppWeixin
仿微信界面,有摇一摇功能,此款软件用来学习android非常有用。(Imitation of micro letter interface, a wave function, this software is very useful to study the android.
)
- 2013-08-11 20:24:27下载
- 积分:1
-
DialerPan
设计的Android自定义View,模仿老电话式旋转拨号盘,按住数字键后绕着圆心进行旋转,当旋转到第三象限时,中心图片会改变,在第三象限抬起手,就会将按住的数字填入编辑框,也可点击编辑框后的后退按钮进行撤销操作,编辑完后点击中心图片会验证所填入密码是否正确。我当前设计的密码是123.(Design custom Android View, imitating the old rotary dial phone, hold the number key to rotate around the center of the circle, when the rotation to the third quadrant, the center picture will change, raised his hand in the third quadrant, they will be Press and hold the digital fill edit box can also click the Back button in the edit box for withdrawal after the operation, after editing click on the picture will validate the populated center of the password is correct. My current design code is 123.)
- 2013-06-09 10:34:30下载
- 积分:1
-
RSA核心加密
RSA核心加密
- 2014-02-18下载
- 积分:1
-
BoolStack
Simple stack for boolean values for Andriod.
- 2013-11-18 21:39:06下载
- 积分:1