没有合适的资源?快使用搜索试试~ 我知道了~
继续练习自定义View,这次带来的是简易折线图,支持坐标点点击监听,效果如下: 画坐标轴、画刻度、画点、连线。。x、y轴的数据范围是写死的 1 <= x <= 7 ,1 <= y <= 70 。。写活的话涉及到坐标轴刻度的动态计算、坐标点的坐标修改,想想就头大,这里只练习自定义View。 1、在res/values文件夹下新建attrs.xml文件,编写自定义属性: <?xml version=1.0 encoding=utf-8?> <resources> <declare name=LineChartView> <attr name=textCol
资源推荐
资源详情
资源评论
Android自定义自定义View简易折线图控件(二)简易折线图控件(二)
继续练习自定义View,这次带来的是简易折线图,支持坐标点点击监听,效果如下:
画坐标轴、画刻度、画点、连线。。x、y轴的数据范围是写死的 1 <= x <= 7 ,1 <= y <= 70 。。写活的话涉及到坐标轴刻度
的动态计算、坐标点的坐标修改,想想就头大,这里只练习自定义View。
1、在res/values文件夹下新建attrs.xml文件,编写自定义属性:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="LineChartView">
<attr name="textColor" format="color" />
<attr name="lineColor" format="color" />
<attr name="pointColor" format="color" />
</declare-styleable>
</resources>
2、新建LineChartView继承View,重写构造方法:
public LineChartView(Context context) {
this(context, null);
}
public LineChartView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public LineChartView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
3、在第三个构造方法中获取自定义属性的值:
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.LineChartView, defStyleAttr, 0);
mTextColor = ta.getColor(R.styleable.LineChartView_textColor, 0xff381a59);
mLineColor = ta.getColor(R.styleable.LineChartView_lineColor, 0xff8e29fa);
mPointColor = ta.getColor(R.styleable.LineChartView_pointColor, 0xffff5100);
mPointRadius = DensityUtils.dp2px(context, 3);
ta.recycle();
4、创建画图所使用的对象,如Paint、Path:
资源评论
weixin_38740130
- 粉丝: 6
- 资源: 926
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功