当前位置: 首页 > 工具软件 > Rounded View > 使用案例 >

RoundedImageView的使用

訾雅畅
2023-12-01

还是习惯性的第一步——添加依赖

implementation 'com.makeramen:roundedimageview:2.3.0'

用法

第一种:用xml定义

<com.makeramen.roundedimageview.RoundedImageView
        android:id="@+id/rounded_image_view"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:scaleType="center"
        android:src="@mipmap/app_launcher"
        app:riv_border_color="@color/blue"
        app:riv_border_width="1dp"
        app:riv_corner_radius="100dp"
        app:riv_mutate_background="true"
        app:riv_oval="true"
        app:riv_tile_mode="mirror" />

各个属性的作用看命名就知道了,值得一提的是,riv_corner_radius可以单独设置四个角的圆弧大小。
第二种:直接在代码中使用

RoundedImageView riv =newRoundedImageView(context);
riv.setScaleType(ScaleType.CENTER_CROP);
riv.setCornerRadius((float) 10);
riv.setBorderWidth((float) 2);
riv.setBorderColor(Color.DKGRAY);
riv.mutateBackground(true);
riv.setImageDrawable(drawable);
riv.setBackground(backgroundDrawable);
riv.setOval(true);
riv.setTileModeX(Shader.TileMode.REPEAT);
riv.setTileModeY(Shader.TileMode.REPEAT);

设置的属性跟xml的一样。

 类似资料: