Android实现ImageView加边框
对于一个Android ImageView,如果我们要加边框,比如宽为3dp的灰色框,我们怎么做呢?
一种方法,是自己定义一个MyImageView类,继承自ImageView,在其onDraw方法中画canvas。
还有一种比较取巧的方法是设置一个带有边框的背景图片。
这里给出一种简单方法,既不需要创建衍生的类,也不需要准备图片。采用xml定义的方式实现。
背景定义xml:bg_border1.xml
<?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#EEEEEE" /> <stroke android:width="3dp" android:color="#EEEEEE" /> <corners android:radius="0dp" /> <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" /> </shape>
在Imageview定义页面上使用代码:
<ImageView android:id="@+id/iv_thumbnail" android:layout_height="63dp" android:layout_width="63dp" android:background="@drawable/bg_border1" android:padding="3dp" />
这样就可以使用了,效果如下图所示:
相关推荐
huha 2020-10-16
xfcyhades 2020-11-20
sgafdsg 2020-11-04
Michael 2020-11-03
fengyeezju 2020-10-14
ziyexiaoxiao 2020-10-14
业余架构师 2020-10-09
OuNuo0 2020-09-29
moses 2020-09-22
Angelia 2020-09-11
qinxu 2020-09-10
刘炳昭 2020-09-10
Nostalgiachild 2020-09-07
Nostalgiachild 2020-08-17
leavesC 2020-08-14
一青年 2020-08-13
AndroidAiStudy 2020-08-07
ydc0 2020-07-30
绿豆饼 2020-07-28