
Android进阶
文章平均质量分 91
u010566681
丶ban
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android进阶-自定义view(1)
源码方式public class BanView extends View { Paint paint = new Paint(); public BanView(Context context) { super(context); } public BanView(Context context, @Nullable AttributeSe...原创 2018-04-26 11:23:34 · 363 阅读 · 0 评论 -
Android进阶-自定义view(2)(DrawPath)
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP) public class DrawPath extends View { public DrawPath(Context context) { super(context); } public DrawPath(Context context, @Nulla...原创 2018-04-26 14:57:38 · 554 阅读 · 0 评论