首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
正圆形专题
Android长方形图片生成正圆形,以及矩形图片生成圆角
一般要做正圆形图片,只能是正方形的基础上才能实现,否则就变成椭圆了,下面说说如何使长方形的图片生成正圆形图片 废话不多说,没图没真相,先上图吧: 原图: 变成正圆后: 下面上代码: public static Bitmap makeRoundCorner(Bitmap bitmap){int width = bitmap.getWidth(
阅读更多...
圆角与正圆形的Button
在res目录下的drawable-mdpi建立xml文件shape.xml。如下图所示: shape.xml <?xml version="1.0" encoding="UTF-8"?><shapexmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle">
阅读更多...