Android studio的圆形图片怎么做
时间: 2024-03-25 08:40:57 浏览: 102
要在Android Studio中创建圆形图像,可以使用以下步骤:
1.在项目的res/drawable文件夹下创建一个XML文件,例如circle.xml。
2.在circle.xml文件中添加以下内容:
```
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="@color/colorPrimary" />
</shape>
```
3.在你的布局文件中使用ImageView控件并设置background为circle.xml,例如:
```
<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/circle" />
```
4.在你的Java代码中,可以通过findViewById来获取ImageView对象,例如:
```
ImageView imageView = findViewById(R.id.imageView);
```
然后,你可以使用Glide或Picasso等库从网络或本地加载图像并将其设置为ImageView的src属性。
这样,你就可以在Android Studio中创建一个圆形图像了。
阅读全文