android – 使用边框创建圆形按钮

前端之家收集整理的这篇文章主要介绍了android – 使用边框创建圆形按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试制作一个带有透明背景和彩色边框的圆形按钮.我怎样才能做到这一点?

我附上了我的一个iOS应用程序的屏幕截图,显示了我想要的内容.

解决方法

对于你的按钮使用这个
<Button
 android:id="@+id/yourbuttonname"
 android:text="Button"
 android:textColor="#FFFFFF"
 android:textSize="30sp"
 android:layout_width="100dp"
 android:layout_height="100dp"
 android:background="@drawable/buttonshape"
/>

并创建一个这样的buttonshape.xml文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"     android:shape="rectangle" >
<corners
android:topLeftRadius="100dp"
android:topRightRadius="100dp"
android:bottomLeftRadius="100dp"
android:bottomRightRadius="100dp"
/>
<solid
android:color="#"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp"
/>
<size
android:width="100dp"
android:height="100dp"
/>
<stroke
android:width="3dp"
android:color="#878787"
/>
</shape>

只需调整颜色的值和你想要的文字.享​​受!

原文链接:https://www.f2er.com/android/317489.html

猜你在找的Android相关文章