这篇文章给大家介绍怎么在Android中通过自定义控件实现一个折线图,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
成都创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于成都网站设计、网站制作、灵寿网络推广、小程序开发、灵寿网络营销、灵寿企业策划、灵寿品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;成都创新互联公司为所有大学生创业者提供灵寿建站搭建服务,24小时服务热线:18980820575,官方网址:www.cdcxhl.com
Android是一种基于Linux内核的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由美国Google公司和开放手机联盟领导及开发。
首先是控件绘图区域的划分,控件左边取一小部分(控件总宽度的八分之一)绘制表头,右边剩余的部分绘制表格
确定表格的行列数,首先绘制一个三行八列的网格,设置好行列的坐标后开始绘制
/*绘制三条横线*/ for(int i=0;i<3;i++){ canvas.drawLine(textWide, mLineYs[i], totalWidth, mLineYs[i], mPaintLine); } /*绘制八条竖线*/ for(int i=0;i<8;i++){ canvas.drawLine(mLineXs[i], 0, mLineXs[i], totalHeight, mPaintLine); }
网格绘制完成后,开始绘制折线图
根据输入的节点数据,分别绘制两条折线
通过canvas的drawLine方法依次连接两点即可
在每个数据节点处绘制一个小圆,突出显示
/*绘制第一条折线的路径*/ for (int i = 0; i < mPerformance_1.length - 1; i++) { /*折线图的折线的画笔设置粗一点*/ mPaintLine.setStrokeWidth(5); /*计算当前节点的坐标值*/ float prePointX =mLineXs[i]; float prePointY =mLineYs[2] - (mLineYs[2] - mLineYs[mPerformance_1[i].type]) * animCurrentValue; /*计算下一个节点的坐标值*/ float nextPointX=mLineXs[i + 1]; float nextPointY=mLineYs[2] - (mLineYs[2] - mLineYs[mPerformance_1[i + 1].type]) * animCurrentValue; /*连接当前坐标和下一个坐标,绘制线段*/ canvas.drawLine(prePointX, prePointY, nextPointX, nextPointY, mPaintLine1); /*当前节点坐标处绘制小圆*/ canvas.drawCircle(prePointX, prePointY, mSmallDotRadius, mPointPaint); }
两条折线重合的地方,需要特殊考虑,比如希望两条折线重合的地方折线变为白色
设置下两条折线的画笔即可
mPaintLine2.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SCREEN)); mPaintLine1.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SCREEN));
测试代码及效果;
final Random random=new Random(); final LineChartView myView=(LineChartView)findViewById(R.id.custom_view); final LineChartView.Performance[] performances1=new LineChartView.Performance[8]; final LineChartView.Performance[] performances2=new LineChartView.Performance[8]; myView.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v){ for(int i=0;i完整代码如下:
public class LineChartView extends View { private Context context; /*动画插值器*/ DecelerateInterpolator mDecelerateInterpolator = new DecelerateInterpolator(); /*动画刷新的次数*/ private int mDuration = 10; /*当前动画进度值*/ private int mCurrentTime = 0; private Performance[] mPerformance_1, mPerformance_2; /*两条折线的颜色*/ private int mLineColor1, mLineColor2; /*绘制表头文字画笔*/ private Paint mPaintText = new Paint(); /*绘制表格的画笔*/ private Paint mPaintLine = new Paint(); /*第一条折线的画笔*/ private Paint mPaintLine1 =new Paint(); /*第二条折线的画笔*/ private Paint mPaintLine2 =new Paint(); /*坐标点的小圆点画笔*/ private Paint mPointPaint = new Paint(); private float mSmallDotRadius = 4; private TypedValue typedValue; private int mPaintClolor; /*Handler刷新界面产生动画效果*/ private Handler mHandler = new Handler(); private Runnable mAnimation = new Runnable() { @Override public void run() { if (mCurrentTime < mDuration) { mCurrentTime++; LineChartView.this.invalidate(); } } }; public LineChartView(Context context) { super(context); this.context=context; init(); } public LineChartView(Context context, AttributeSet attrs) { super(context, attrs); this.context=context; init(); } public LineChartView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); this.context=context; init(); } public enum Performance { WIN(0), DRAW(1), LOSE(2); public int type; Performance(int type) { this.type = type; } } public void setPerformances(Performance[] performance1, Performance[] performance2) { if (performance1 == null) { performance1 = new Performance[0]; } if (performance2 == null) { performance2 = new Performance[0]; } mPerformance_1 = Arrays.copyOf(performance1, performance1.length > 8 ? 8 : performance1.length); mPerformance_2 = Arrays.copyOf(performance2, performance2.length > 8 ? 8 : performance2.length); if (isShown()) { mCurrentTime = 0; this.invalidate(); } } /** * 设置折线1的颜色 * * @param mLineColor1 */ public void setLineColor1(int mLineColor1) { this.mLineColor1 = mLineColor1; } /** * 设置折线2的颜色 * * @param mLineColor2 */ public void setLineColor2(int mLineColor2) { this.mLineColor2 = mLineColor2; } private void init() { mLineColor1=Color.BLUE; mLineColor2 = Color.GREEN; typedValue=new TypedValue(); context.getTheme().resolveAttribute(R.attr.title_bar,typedValue,true); mPaintClolor =getResources().getColor(typedValue.resourceId); final LineChartView.Performance[] performances1=new LineChartView.Performance[8]; final LineChartView.Performance[] performances2=new LineChartView.Performance[8]; final Random random=new Random(); for(int i=0;i关于怎么在Android中通过自定义控件实现一个折线图就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
文章题目:怎么在Android中通过自定义控件实现一个折线图
网站路径:http://cdkjz.cn/article/pdheec.html