使用自定义小部件的圆形图像角

时间:2012-10-08 10:24:15

标签: android imageview rounded-corners

我想在自定义列表中获取图像的圆角。我使用了以下链接中提到的自定义窗口小部件方法:

http://wiresareobsolete.com/wordpress/2011/08/quick-rounded-corners/#comments

图像角落变得模糊。任何身体都可以使用这个方法为我提供一个平滑角落的解决方案。

1 个答案:

答案 0 :(得分:0)

在drawable文件夹中创建一个文件。为它命名任何东西。并使用该文件设置imageview背景。它会给你一个圆角。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<stroke android:width="1dip"
    android:color="@color/stroke_color"/>

<solid android:color="@color/white"/>

<padding 
    android:left="5dip"
    android:top="5dip"
    android:right="5dip"
    android:bottom="5dip" />

<corners android:radius="5dip" />

</shape>