国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

Android實現圓角圖片的方法

瀏覽:97日期:2022-09-19 10:06:42

本文實例為大家分享了Android實現圓角圖片的具體代碼,供大家參考,具體內容如下

效果圖

Android實現圓角圖片的方法

創建類CustomRoundAngleImageView

public class CustomRoundAngleImageView extends AppCompatImageView { float width, height; public CustomRoundAngleImageView(Context context) {this(context, null);init(context, null); } public CustomRoundAngleImageView(Context context, AttributeSet attrs) {this(context, attrs, 0);init(context, attrs); } public CustomRoundAngleImageView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);init(context, attrs); } private void init(Context context, AttributeSet attrs) {if (Build.VERSION.SDK_INT < 18) { setLayerType(View.LAYER_TYPE_SOFTWARE, null);} } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) {super.onLayout(changed, left, top, right, bottom);width = getWidth();height = getHeight(); } @Override protected void onDraw(Canvas canvas) {if (width >= 20 && height > 20) { Path path = new Path(); //四個圓角 path.moveTo(20, 0); path.lineTo(width - 20, 0); path.quadTo(width, 0, width, 20); path.lineTo(width, height - 20); path.quadTo(width, height, width - 20, height); path.lineTo(20, height); path.quadTo(0, height, 0, height - 20); path.lineTo(0, 20); path.quadTo(0, 0, 20, 0); canvas.clipPath(path);}super.onDraw(canvas); }}

布局代碼

<com.example.myapplication.CustomRoundAngleImageView android: android:layout_width='42dp' android:layout_height='42dp' android:layout_marginLeft='16dp' android:layout_marginTop='10dp' android:src='http://www.intensediesel.com/bcjs/@mipmap/ic_launcher' android:layout_marginBottom='10dp' android:layout_gravity='center' android:scaleType='centerCrop' />

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Android
相關文章:
主站蜘蛛池模板: 穆棱市| 吉木乃县| 荆州市| 和政县| 新丰县| 都匀市| 来安县| 铁岭县| 乐安县| 阿尔山市| 巧家县| 汽车| 元氏县| 博客| 海口市| 西华县| 精河县| 盐亭县| 水城县| 贡山| 监利县| 金秀| 弥勒县| 乐都县| 洛浦县| 兰西县| 巴林左旗| 双柏县| 上林县| 尖扎县| 南川市| 清远市| 康乐县| 罗定市| 东乌珠穆沁旗| 越西县| 彭州市| 云龙县| 柳河县| 盐津县| 石柱|