-
带标签的简单饼图
翻译 maninwest@Codeforge 作者:User 1234567@CodeProject此库包含创建带有基本交互和标签的饼图的简单方法。实现步骤计算值的百分比使用百分比找到掠角在当前扇形的掠角上添加上一个扇形的结束角。使用起始角度和掠角创建新扇形视图。代码循环访问所有点并计算角度,添加扇形到布局total = 0;
for (int i = 0; i < data.length; i++) {
total += data[i];
}
float startAngle = 0, sweepAngle;
for (int i = 0; i < data.length; i++) {
sweepAngle = data[i] * (360f / total);
PieSlice pieSlice = new PieSlice(getContext(), this);
pieSlice.startAngele = startAngle;
pieSlice.sweepAngle = sweepAngle;
addView(pieSlice);
pieSlices.add(pieSlice);
pieSlice.paint.setColor(palette[i % 6]);
startAngle += s
- 2022-05-18 12:34:33下载
- 积分:1
-
android 判断双SD卡_CheckDoubleSDCard 例子源码
android 判断双SD卡_CheckDoubleSDCard 例子源码
- 2014-10-01下载
- 积分:1
-
android 收集崩溃BUG发送到邮箱
收集崩溃BUG发送到邮箱
- 2015-06-13下载
- 积分:1
-
Orong_tbzs
详细介绍 - [ 聚融网贷款投标助手源码 ]
聚融网贷款投标助手源码是一个安卓版本的聚融网贷款投标助手项目源码,一般公司或者开发者都不会把这类内部使用的项目源码泄漏出来,这个项目是依托于他的官网的orong.cn,但是现在官网挂掉了,估计整个公司跑路了才会分享出来,因为项目缺少部分图片资源所以原项目会报错,我使用资源目录下的其他图片文件对缺少的图片资源进行了替代,可能图片显示会有错误但是整个项目可以正常的运行起来(Detailed financial network loan tender assistant source]
Poly financial loans Network Bidding Assistant source is an Android version of the fusion of the net loan bidding assistant project source code, companies or developers won t leak out the internal use of the project source code. The project is relying on his official website orong.cn, but now official website hang, it is estimated that the company running the will share out, because the items missing parts of the picture resources so the original project will misstatement, I use resource directory under the other picture file to replace the missing image resources may picture shows there will be mistakes but the entire project can be normal operation)
- 2016-05-30 13:36:23下载
- 积分:1
-
android 加密处理解密处理 示例
android 加密处理解密处理 示例
- 2014-08-09下载
- 积分:1
-
Android城市天气预报-获取天气信息
Android适时获取天气信息,更新显示实时天气信息,更新显示天气预报,获取天气信息,通过网络获取数据,传递给XMLReader解析。得到一个封装打包的字符串,包括除icno外的所有东西,可以预报后四天的天气信息:
private String condition; // 多云
private String temp_celcius;// 摄氏温度
private String temp_fahrenheit;// 华氏温度
private String humidity; // 湿度:58%
private String wind_condition;// 风向...
private String icon;// 图标
得到最后一个预报天气,这里我们每次添加一个数据都是在最后,所以得到最后一个
- 2022-02-13 12:25:55下载
- 积分:1
-
Rtp2H264
h264 RTP包的解包、拼帧源码,适合android平台,实测可用。(H264 RTP packet unpacking, fight the frame source, suitable for the android platform, the measured available.)
- 2013-05-16 10:38:11下载
- 积分:1
-
wifi连接
资源描述用户交互界面填写要连接的wifi的ssid及其连接方式(WEP、WPA或无密码情况),点击连接,即可通过服务连接wifi,同时,广播实时监听wifi的连接状态
- 2022-02-20 07:06:21下载
- 积分:1
-
Android CircleProgressBar
1、Android圆环进度条,圆环上的小圆可以随着手指滑动来调节进度;
2、百分比随着手指滑动自动更新;
3、此demo可以用于FM主界面的选台的调节控件,到如eclipse直接可以运行;
- 2023-04-13 03:10:03下载
- 积分:1
-
android 创建桌面快捷方式源代码
android 创建桌面快捷方式源代码
- 2014-10-10下载
- 积分:1