gpt4 book ai didi

android - android中的按钮样式

转载 作者:行者123 更新时间:2023-11-28 18:34:38 24 4
gpt4 key购买 nike

我是 Android 开发的新手,我想学习如何设置按钮元素的样式。我熟悉 HTML 中的样式(CSS 和 HTML 样式)。例如,如何将此 css 样式转换并实现到 Android 中(我假设使用 XML 样式):

.buttonClass{
background-color: #fff;
color: #000;
border-radius: 10px;
opacity: 0.5
...
}

我有这个按钮元素代码是在 Eclipse 上为我创建的图形布局:

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Camera" />

最佳答案

你可以这样做:背景颜色:

android:background="#ARGB" //alpha, red, green, blue or a drawable

如果你想要一个圆形的按钮:

android:background="@drawable/myBtnWithColor"

“myBtnWithColor”XML 文件:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<gradient android:startColor="#yourColor" android:endColor="#yourColor"
<corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp" android:topRightRadius="7dp"/>
</shape>

您可以在背景颜色中设置按钮的不透明度。如前所述,您可以在颜色中设置 alpha 值。

关于android - android中的按钮样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13148301/

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