gpt4 book ai didi

android - 如何在android中创建透明的圆形按钮?

转载 作者:行者123 更新时间:2023-12-03 21:30:45 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to make a round button?

(23 个回答)


6年前关闭。




我想创建按钮登录并像这样注册

this .

最佳答案

将 button.xml 包含在您的布局中,并通过给它一个 id 将其用作按钮,或者您也可以将边框设置为按钮以获得相同的结果

按钮.xml

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/border">

<TextView android:id="@+id/skillTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cleaner"
android:textSize="@dimen/abc_text_size_medium_material"
android:textColor="@color/text_grey"
android:layout_margin="@dimen/normal_margin"
android:layout_centerInParent="true"
/>
</RelativeLayout>

可绘制/边框.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:radius="5dp"
/>
<stroke
android:width="1dp"
android:color="@color/white" />
</shape>

关于android - 如何在android中创建透明的圆形按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36042503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com