本篇文章给大家分享的是有关如何给Android应用设置圆角图片,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
主要原理是使用系统自带api:
RoundedBitmapDrawableFactory
public class MainActivity extends AppCompatActivity { private ImageView mImgRectRound; private ImageView mImgRound; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mImgRectRound = (ImageView) findViewById(R.id.img_rect_rounded); mImgRound = (ImageView) findViewById(R.id.img_rounded); rectRoundBitmap(); roundBitmap(); } private void rectRoundBitmap(){ //得到资源文件的BitMap Bitmap image= BitmapFactory.decodeResource(getResources(),R.drawable.dog); //创建RoundedBitmapDrawable对象 RoundedBitmapDrawable roundImg =RoundedBitmapDrawableFactory.create(getResources(),image); //抗锯齿 roundImg.setAntiAlias(true); //设置圆角半径 roundImg.setCornerRadius(30); //设置显示图片 mImgRectRound.setImageDrawable(roundImg); } private void roundBitmap(){ //如果是圆的时候,我们应该把bitmap图片进行剪切成正方形, 然后再设置圆角半径为正方形边长的一半即可 Bitmap image = BitmapFactory.decodeResource(getResources(), R.drawable.dog); Bitmap bitmap = null; //将长方形图片裁剪成正方形图片 if (image.getWidth() == image.getHeight()) { bitmap = Bitmap.createBitmap(image, image.getWidth() / 2 - image.getHeight() / 2, 0, image.getHeight(), image.getHeight()); } else { bitmap = Bitmap.createBitmap(image, 0, image.getHeight() / 2 - image.getWidth() / 2, image.getWidth(), image.getWidth()); } RoundedBitmapDrawable roundedBitmapDrawable = RoundedBitmapDrawableFactory.create(getResources(), bitmap); //圆角半径为正方形边长的一半 roundedBitmapDrawable.setCornerRadius(bitmap.getWidth() / 2); //抗锯齿 roundedBitmapDrawable.setAntiAlias(true); mImgRound.setImageDrawable(roundedBitmapDrawable); }}
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1142
183.71 KB下载数642
644.84 KB下载数2755
相关文章
发现更多好内容猜你喜欢
AI推送时光机如何给Android应用设置圆角图片
后端开发2023-05-31
Android如何设置圆角图片
后端开发2022-06-06
css如何设置图片圆角
后端开发2023-06-14
Android实现图片设置圆角形式
后端开发2024-04-02
android 设置圆角图片实现代码
后端开发2022-06-06
Android怎么实现图片设置圆角形式
后端开发2023-06-21
php如何将图片设置为圆形图片
后端开发2023-06-25
android开发设置圆形、圆角图片(全网最简单,不会你打我)
后端开发2022-06-06
Android如何实现图片生成卷角和圆角缩略图的方法
后端开发2023-05-30
ios如何给UIView设置图片
后端开发2024-04-02
Android应用中如何将头像图片变圆形
后端开发2023-05-31
如何在Android中利用Glide实现一个图片圆角功能
后端开发2023-05-31
html如何给图片设置链接
后端开发2023-06-15
Android如何将Glide动态加载不同大小的图片切圆角与圆形
后端开发2023-05-30
如何利用CSS3打造无图片圆角输入框?
后端开发2024-04-02
android背景图片如何设置
后端开发2023-08-18
css如何给按钮设置背景图片
后端开发2024-04-02
css如何给边框设置背景图片
后端开发2024-04-02
web开发中如何使用字符代替图片实现圆角或尖角效果
后端开发2023-06-08
css如何设置背景图片自适应居中
后端开发2023-06-08
咦!没有更多了?去看看其它编程学习网 内容吧