如何在图像上添加相框?

时间:2018-11-10 13:08:09

标签: android android-studio android-imageview android-image

enter image description here

如何在android中的这种类型的帧上添加给定的图片

1 个答案:

答案 0 :(得分:-1)

  

如果要搜索ImageView的自定义边框和形状    Try this

  

将下面的XML设置为“图像视图”的背景为“可绘制”。可以。

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#FFFFFF" />
    <stroke android:width="1dp" android:color="#000000" />
    <padding android:left="1dp" android:top="1dp" android:right="1dp"
        android:bottom="1dp" />
</shape>

And then add android:background="@drawable/yourXmlFileName" to your ImageView