简体   繁体   English

进度条中的圆角 Android

[英]Round corners in a progress bar Android

I'm following that tip for change the color of a progress bar.我正在按照该提示更改进度条的颜色。 The problem is that using that snipplet the corners of the progressbar turns squared.问题是使用那个snipplet,进度条的角落变成了正方形。 How can I keep the original corners look and change the colors?我怎样才能保持原来的角落看起来和改变colors? Thanks in advance提前致谢

Try to assign each corner separately and put pixels instead of DIP, some manufacturers don't implement this feature correctly:尝试单独分配每个角并放置像素而不是DIP,一些制造商没有正确实现此功能:

android:topLeftRadius="5px"
android:topRightRadius="5px"
android:bottomLeftRadius="5px"
android:bottomRightRadius="5px"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM