android studio transform

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在 Android Studio 中实现圆形头像,可以使用以下步骤: 1. 在 xml 布局文件中,添加一个 ImageView 控件,并设置它的宽度和高度相等。 ``` <ImageView android:id="@+id/profile_image" android:layout_width="100dp" android:layout_height="100dp" /> ``` 2. 在 Java 代码中获取 ImageView 控件的引用,并使用 Glide 或其他图片加载库加载图片。 ``` ImageView profileImage = findViewById(R.id.profile_image); Glide.with(this).load(R.drawable.profile_pic).into(profileImage); ``` 3. 创建一个圆形裁剪的工具类 CircleTransform,代码如下: ``` public class CircleTransform extends BitmapTransformation { @Override protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { return circleCrop(pool, toTransform); } private static Bitmap circleCrop(BitmapPool pool, Bitmap source) { if (source == null) return null; int size = Math.min(source.getWidth(), source.getHeight()); int x = (source.getWidth() - size) / 2; int y = (source.getHeight() - size) / 2; Bitmap squared = Bitmap.createBitmap(source, x, y, size, size); Bitmap result = pool.get(size, size, Bitmap.Config.ARGB_8888); if (result == null) { result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); } Canvas canvas = new Canvas(result); Paint paint = new Paint(); paint.setShader(new BitmapShader(squared, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP)); paint.setAntiAlias(true); float r = size / 2f; canvas.drawCircle(r, r, r, paint); return result; } @Override public void updateDiskCacheKey(@NonNull MessageDigest messageDigest) { } } ``` 4. 在 Java 代码中使用 CircleTransform 工具类对 ImageView 控件进行圆形裁剪。 ``` ImageView profileImage = findViewById(R.id.profile_image); Glide.with(this).load(R.drawable.profile_pic).transform(new CircleTransform()).into(profileImage); ``` 这样就可以在 Android Studio 中实现圆形头像了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值