如何在android中的这种类型的帧上添加给定的图片
答案 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