fWX228941 / document

document descripe my groun-up
0 stars 0 forks source link

TextView #16

Open fWX228941 opened 5 years ago

fWX228941 commented 5 years ago

https://github.com/grantland/android-autofittextview 具体的业务逻辑由helper类单独处理

fWX228941 commented 5 years ago

自定义TextView,修改其规则和行为,控件的每一个属性对应一个方法,重写了行数,最大行数,字体大小这三个回调方法 图片17

其中setTextSize(int unit, int size)以sp为单位 getTextSize以px为单位,单位转化,字体大小,本质就是赋值,为textView赋size,只是这个size需要中间过度一下,通过调用方法。 图片18 图片19 图片20

fWX228941 commented 5 years ago

图片21