我解决了图像的典型任务:尝试对其进行centerCrop()使其像How to round an image with Glide library?中那样形成圆形,但结果似乎像Glide circular image gets croppedandroid - 在Glide中制作方形图像,然后将其四舍五入-LMLPHP

(非圆形)。

我认为Glide(v.4)无法正确裁剪图像。我尝试了许多类似GlideApp.with(photo).load(url).circleCrop().into(photo)的变体。可能更好的方法是首先从一个矩形创建一个正方形,然后使其变为圆形。

这是XML的一部分:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >

    <ImageView
        android:id="@+id/photo"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginStart="15dp"
        android:layout_marginLeft="15dp"
        android:layout_marginTop="20dp"
        android:adjustViewBounds="true"
        android:scaleType="fitCenter"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:src="@drawable/image_1"
        />

    <TextView
        android:id="@+id/name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true"
        android:layout_marginStart="7dp"
        android:layout_marginLeft="7dp"
        android:lineSpacingExtra="1sp"
        android:textColor="@color/black"
        android:textSize="20sp"
        app:layout_constraintEnd_toStartOf="parent"
        app:layout_constraintHorizontal_weight="1"
        app:layout_constraintStart_toEndOf="@+id/photo"
        app:layout_constraintTop_toTopOf="@+id/photo"
        tools:text="Name"
        />

</android.support.constraint.ConstraintLayout>


更新

抱歉,源图像中有问题。我不认为是这样(添加了行):

android - 在Glide中制作方形图像,然后将其四舍五入-LMLPHP

最佳答案

使用RequestOptions.circleCropTransform()

像这样 :

    Glide.with(this).load(url)
            .apply(RequestOptions.circleCropTransform())
            .into((ImageView) photo);


另外,请确保ImageView是正方形。如果使用ConstraintLayout,请使用app:layout_constraintDimensionRatio="1:1"

Doc:https://bumptech.github.io/glide/javadocs/400/com/bumptech/glide/request/RequestOptions.html

08-25 23:18
查看更多