带有圆角的Android ImageView无法正常工作

前端之家收集整理的这篇文章主要介绍了带有圆角的Android ImageView无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to make an ImageView with rounded corners?40个
我已经定义了文件thumb_rounded.xml并将其放在我的android应用程序中的res / drawable文件夹中.有了这个文件,我想在我的ImageView中得到包含新闻拇指的圆角,
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners android:radius="13.0dip" />
</shape>

我将其设置为我的ImageView的背景,但是,我没有得到圆角,图像仍然是一个矩形.有没有人知道怎么做到这一点?我想达到与此屏幕相同的效果

非常感谢

Ť

解决方法

你缺少几个标签.这是一个新的样本:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> 
    <solid android:color="#ffffff"/>    

    <stroke android:width="3dp"
            android:color="#ff000000"/>

    <padding android:left="1dp"
             android:top="1dp"
             android:right="1dp"
             android:bottom="1dp"/> 

    <corners android:radius="30px"/> 
</shape>

看到here

另外,你知道RoundRectShape吗?

原文链接:https://www.f2er.com/android/314262.html

猜你在找的Android相关文章