GenaralRoundLayout

android:layout_height=“match_parent”

android:background=“@color/colorAccent” />

</com.minminaya.widget.GeneralRoundFrameLayout>

给自定义 view 加上圆角裁剪特性

GeneralRoundLayout 设计初期是为了方便各种布局的扩展,因此可以使任何一个 view 支持圆角特性,你只需要重写几个方法

  • 1、让你的自定义 view 比如 GeneralRoundImageView 实现 IRoundView 接口

interface IRoundView {

fun setCornerRadius(cornerRadius: Float)

fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int)

}

  • 2、定义 attrs 属性

在你的 attrs 的文件中,定义 declare-styleable 属性(为了可以在 xml 文件中输入的时候自动提示)

  • 2、让 GeneralRoundImageView 实现 IRoundView 接口的方法

public class GeneralRoundImageView extends AppCompatImageView implements IRoundView {

public GeneralRoundImageView(Context context) {

this(context, null);

}

public GeneralRoundImageView(Context context, @Nullable AttributeSet attrs) {

super(context, attrs);

}

public GeneralRoundImageView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

@Override

public void setCornerRadius(float cornerRadius) {

}

@Override

public void onLayout(boolean changed, int left, int top, int right, int bottom) {

super.onLayout(changed, left, top, right, bottom);

}

}

  • 3、在 GeneralRoundImageView 中定义 GeneralRoundViewImpl 对象,本质上是裁剪 view 的 helper 类,让其初始化,并将 view 的实现分发到 GeneralRoundViewImpl

public class GeneralRoundImageView extends AppCompatImageView implements IRoundView {

private GeneralRoundViewImpl generalRoundViewImpl;

public GeneralRoundImageView(Context context) {

this(context, null);

}

public GeneralRoundImageView(Context context, @Nullable AttributeSet attrs) {

super(context, attrs);

init(this, context, attrs);

}

public GeneralRoundImageView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

init(this, context, attrs);

}

@Override

public void setCornerRadius(float cornerRadius) {

generalRoundViewImpl.setCornerRadius(cornerRadius);

}

@Override

public void onLayout(boolean changed, int left, int top, int right, int bottom) {

super.onLayout(changed, left, top, right, bottom);

generalRoundViewImpl.onLayout(changed, left, top, right, bottom);

}

private void init(GeneralRoundImageView view, Context context, AttributeSet attrs) {

generalRoundViewImpl = new GeneralRoundViewImpl(view,

context,

attrs,

R.styleable.GeneralRoundImageView,

R.styleable.GeneralRoundImageView_corner_radius);

}

}

  • 4、重写 dispatchDraw 方法,将实现类的方法包装 super

@Override

protected void dispatchDraw(Canvas canvas) {

generalRoundViewImpl.beforeDispatchDraw(canvas);

super.dispatchDraw(canvas);

generalRoundViewImpl.afterDispatchDraw(canvas);

}

  • 5、在你要使用的地方

<com.minminaya.genaral.custom.GeneralRoundImageView

android:layout_width=“200dp”

android:layout_height=“200dp”

android:layout_gravity=“center”

android:layout_marginTop=“20dp”

android:src=“@color/colorPrimaryDark”

app:corner_radius=“60dp” />

  • 6、done

如何同时解决 xfermode 内存泄露和 Android P 圆角失效问题

  • 1、P 版本圆角失效问题,具体可见 GcsSloop 大神的rclayout,有给出为何失效和解决的方案

  • 2、由于 xfermode 方案会导致内存泄露,所以这里 GeneralRoundLayout 在 L 版本及以上不在使用其进行绘制,转而使用 ViewOutlineProvider 去进行圆角裁剪,当然,4.3 和 4.4 泄露问题不能够解决,基于现在的 18、19 和 20 版本的是用户量,决定保证 L 版本以上不泄露即可

  • 3、为了兼容 18、19 和 20 的圆角可以生效,GeneralRoundViewImpl 内部会进行版本去选择 RoundViewPolicy

什么?,你想快速集成,但又不想要那么多代码?(L 版本及以上)

具体可以参考 GeneralRoundView21Policy 类实现,其实本质上只有几行代码,但是为了写的优雅嘛啊哈,你懂的

  • 1、在你自定义 view 的 dispatchDraw 方法中直接使用 ViewOutlineProvider

@Override

@TargetApi(Build.VERSION_CODES.LOLLIPOP)

protected void dispatchDraw(Canvas canvas) {

super.dispatchDraw(canvas);

setClipToOutline(true);

先自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则近万的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《Android移动开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img

img

img

img

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频

如果你觉得这些内容对你有帮助,可以扫码领取!!!!

资源分享

一线互联网面试专题

379页的Android进阶知识大全

379页的Android进阶知识大全

网上学习 Android的资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。希望这份系统化的技术体系对大家有一个方向参考。

2020年虽然路途坎坷,都在说Android要没落,但是,不要慌,做自己的计划,学自己的习,竞争无处不在,每个行业都是如此。相信自己,没有做不到的,只有想不到的。祝大家2021年万事大吉。
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可免费领取!

018402)]

[外链图片转存中…(img-wBEw1NNG-1711289018402)]

网上学习 Android的资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。希望这份系统化的技术体系对大家有一个方向参考。

2020年虽然路途坎坷,都在说Android要没落,但是,不要慌,做自己的计划,学自己的习,竞争无处不在,每个行业都是如此。相信自己,没有做不到的,只有想不到的。祝大家2021年万事大吉。
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可免费领取!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值