4

我想添加一个 circleimageview 和文本视图的列表,并在回收站视图中使用它,但它向我显示了像这样的方形图像,但我想显示一个圆形图像 在此处输入图像描述

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"
    android:padding="16dp"
    android:background="@drawable/category_bg"
    android:layout_margin="4dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/image_view"
        android:layout_width="70dp"
        android:layout_height="70dp"
        android:src="@color/purple_200" />
        <TextView
        android:id="@+id/title"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_marginStart="8dp"
        android:layout_marginEnd="8dp"
        android:layout_weight="1"
        android:text="Title"
        android:textColor="@color/black"
        android:textStyle="bold"
        android:textSize="18sp"
        android:gravity="center_vertical"
        android:padding="8dp"
        />

</LinearLayout>

另外,我添加了圆形图像视图的依赖项

implementation 'de.hdodenhof:circleimageview:3.1.0'

帮我找出这段代码中的错误

4

2 回答 2

2

请重建您的项目并确保其在 build.gradle 中的实现已成功添加到项目中:

在此处输入图像描述

于 2020-12-06T05:47:23.883 回答
0

重建您的项目并确保在重建之前将您的 build.gradle 成功添加到项目中。并在项目正常工作后清除缓存

于 2021-03-28T06:33:05.263 回答