Android 中的圆形按钮
我想创建一个圆形按钮,上面有加号和减号,并且在 Android 中完全使用 联系人应用程序如下图所示:
I want to create a circular button having a plus and minus sign on to this and exactly used in Android
Contacts application like shown in the image as below:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能会在 android 源代码 中看到此按钮的实现,
它只是带有圆形 png 的 ImageButton作为背景。这是他们的风格的定义:
You may see implementation of this button in android source code
It's just ImageButton with circular png as background. Here is definition of their styles:
只需使用
android:background="@drawable/image"
作为 xml 文件中的按钮属性之一来应用图像Just apply your image using
android:background="@drawable/image"
as one of the button properties in the xml file