自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 Android自定义View(七)Canvas学习

一、介绍 Canvas称之为画布,但是并不是直接在Canvas画,而是canvas默认会创建一个bitmap,也可以通过构造方法或者setBitmap方法传入,像素所有的信息画在了这个bitmap上。 二、drawBitmap() 共有6个重载方法,但是其中两个参数最多的已经废弃掉了,那么就学习4个吧! 在draw方法中,有一个很牛逼的方法:drawBitmapMesh,但是一般不会用到。...

2019-05-21 20:26:00 443

原创 Android自定义View(六)Bitmap基础

一、介绍 Bitmap就是指一张图片,图片格式一般是png、jpg或是webp。 二、Bitmap.Config Possible bitmap configurations. A bitmap configuration describeshow pixels are stored. This affects the quality (color depth) as well as the...

2019-05-21 11:11:36 949

原创 Android自定义View(五)着色器Shader

介绍: Shader is the based class for objects that return horizontal spans of colors during drawing. A subclass of Shader is installed in a Paint calling paint.setShader(shader). After that any object (...

2019-05-16 18:33:45 418

原创 Android自定义View(四)混合模式PorterDuffXfermode

1.PorterDuffXfermode 1.1 介绍 PorterDuffXfermode有点类似数学中的交集,并集,用来两个图像间的混合显示模式,设置的是两个图层交集区域的显示方式,dst是下层,先画的图形;src是上层,后画的图形。 1.2 构造方法 PorterDuffXfermode(PorterDuff.Mode mode); 构造方法中只需一个参数,PorterDuff.M...

2019-05-13 16:35:04 667

原创 Android自定义View(三)路径效果PathEffect

1.七种路径效果 1.1 效果图 1.2 具体方法 PathEffect(); 默认效果,就是直线 CornerPathEffect(radius); 将各线段之间的夹角变成圆角,radius是圆角的半径 new DashPathEffect(new float[]{10f, 5f, 20f, 15f},10);绘制虚线,intervals最少为2个,ph...

2019-05-13 14:38:53 359

原创 Android自定义View(二)基础绘制方法

1.绘制文字 public class MyTextView extends View { Paint paint = new Paint(); private String str = "好好学习,努力奋斗,abcdefg"; public MyTextView(Context context, @Nullable AttributeSet attrs) { ...

2019-05-13 14:12:32 211

原创 Android自定义View(一)了解

Android UI 架构图 Android中每一个控件都会占据一个矩形区域,控件大致可以分为View和ViewGroup,ViewGroup控件作为父类控件可以包含多个View。 Android UI界面显示逻辑流程 Activity setContentView—>Window setContentView—>PhoneWindow setContentView—-&...

2019-05-10 15:39:23 138

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除