CardView + ImageView 自定义圆角头像控件
入门级CardView + ImageView实现圆角头像 在xml中直接使用CardView包裹ImageView实现,实现简单快捷适合不重复用到头像的情况; 自定义控件 //自定义属性 float headRadius; //设置圆角 int headImage; //设置头像图 headRadius设置为宽高的一半就是圆形头像了 package com.example.roundhead.custom; import android.content.Context; import android.content.res.Type
暂无评论