java—在android studio上的设备上显示的小圆形图像

xtupzzrd  于 2021-06-27  发布在  Java
关注(0)|答案(0)|浏览(171)

我一直试图使图像圆形出现,但它似乎小的设备。我做错了什么?帮帮我


XML代码

<RelativeLayout 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="match_parent"
    tools:context=".MainActivity">

    <androidx.cardview.widget.CardView
        android:layout_width="155dp"
        android:layout_height="155dp"
        app:cardCornerRadius="250dp"
        android:layout_marginLeft="120dp"
        android:layout_marginTop="50dp">

    <androidx.cardview.widget.CardView
        android:layout_width="150dp"
        android:layout_height="150dp"
        app:cardCornerRadius="250dp"
        android:layout_gravity="center">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/hackerr"
            android:scaleType="centerCrop"/>

    </androidx.cardview.widget.CardView>
    </androidx.cardview.widget.CardView>
</RelativeLayout>

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题