-
pinyin4jandroid-
pinyin4j Android拼音处理工具类,带文档,用于Android通讯录排序处理,实现按字母排序的功能,在通讯录中,要实现查找联系人按26个英文字母排序的功能,使用pinyin4j就可以很方便的实现此功能。(pinyin4j Android phonetic processing tools with documentation for Android address book sorting processing, sorting alphabetically functions in the address book, find the contact you want to achieve the sort function by 26 letters of the alphabet, you can easily use pinyin4j to achieve this functionality.)
- 2014-04-21 09:35:10下载
- 积分:1
-
android 对话框实例
android 对话框实例
- 2014-08-21下载
- 积分:1
-
test_musicplayer
android 音乐播放
功能:播放 停止 快进(play music)
- 2014-07-21 00:18:31下载
- 积分:1
-
android gps 演示
android gps 演示
- 2022-08-10 22:07:49下载
- 积分:1
-
模拟淘宝商城
界面非常好看的安卓端源码 仿淘宝商城
- 2023-02-23 11:05:04下载
- 积分:1
-
xiaohuangji
是一个基于android的java源码,调用小黄鸡小机器人api(Is an android based java source code, call the little yellow chicken little robot api)
- 2013-08-02 11:21:27下载
- 积分:1
-
MNVETJM014
本控件基于GSM Modem工作,不需要使用电话语音卡设备,不但具备普通电话语音卡功能,还具备手机短信收发功能, 语音与短信()
- 2018-04-21 20:39:11下载
- 积分: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
-
camsecure应用程序
其相机应用程序开放源代码,您可以使用它更改它,你可以从长廊中获取图片和在该图像上使用掩码或模糊的图像它的乐趣,你可以给你的朋友。
- 2022-06-26 12:23:08下载
- 积分:1
-
Android实现Wifi传输文件
通过Android实现文件的传输。让文件分享更容易,只需拥有一台 Android 设备,就可以将文件分享到任何可以连接 WIFI 的设备中,比如 iPhone、其他 Android、笔记本电脑等等。分享后 Android 设备(A)会自动创建一个热点,这时让另外一个设备(B)连接此热点,很快 Fast File Transfer 会识别到,并给出一个地址,从 B 设备中打开这个地址,就完成了文件的传输。
- 2022-02-13 16:13:13下载
- 积分:1