android无法绕过imageview的角落吗?

android无法绕过imageview的角落吗?,第1张

概述我正在制作一个应用程序,想要在其中将ImageView圆角化.但是它并没有从它的角落被舍入,我使用了以下代码:<?xmlversion="1.0"encoding="utf-8"?><shapexmlns:android="http://schemas.android.com/apkes/android"android:padding="8dp"android:shap

我正在制作一个应用程序,想要在其中将ImageVIEw圆角化.但是它并没有从它的角落被舍入,我使用了以下代码:

<?xml version="1.0" enCoding="utf-8"?> <shape xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:padding="8dp"    androID:shape="rectangle" ><solID androID:color="#6BC1F8" /><corners    androID:bottomLefTradius="5dp"    androID:bottomrighTradius="5dp"    androID:topLefTradius="5dp"    androID:topRighTradius="5dp" /></shape>

圆角的图像..,但我越来越像这个图像:

我想做如下:

我不确定我在哪里做错了,请引导我:)

解决方法:

在AndroID中使用Shape制作圆角

在drawable中创建一个名为roundcorner.xml的xml文件

<?xml version="1.0" enCoding="utf-8"?>    <shape xmlns:androID="http://schemas.androID.com/apk/res/androID">        <solID androID:color="#33DDFF" />        <corners androID:radius="4dp" />    </shape>

在您的Imagebutton中添加此属性androID:background =“ @ drawable / roundcorner”

并使用androID:src为imagebutton设置图像

要么

使用图片视图集androID:src =“您的图片”,androID:background =“您的形状”和androID:clickable =“ true”

总结

以上是内存溢出为你收集整理的android无法绕过imageview的角落吗?全部内容,希望文章能够帮你解决android无法绕过imageview的角落吗?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1076579.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存