Android studio按钮固定颜色无法更改
有人可以帮助我吗 我在 android 中使用按钮,我无法更改按钮颜色,这是我的 xml 代码:
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="133dp"
tools:layout_editor_absoluteY="584dp" />
can someone help me
I'm using a button in android ,I'm unable to change the button color , this is my xml code :
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="133dp"
tools:layout_editor_absoluteY="584dp" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用属性
android:backgroundTint
。例如:如果您看不到所需的颜色,请将其添加到
values
文件夹中存储的colors.xml
文件中。这是
colors.xml
文件的示例:您应该已经有此文件,如果没有,请添加它。
Use the attribute
android:backgroundTint
. For example:If you can't see the color you want, please add it to the
colors.xml
file stored in thevalues
folder.This is an example of a
colors.xml
file:You should already have this file, if not, add it.
您可以使用材质按钮,它不会影响按钮的波纹和高度
You can use Material Button and it's won't affect ripple and elevation of Button
以前对我有帮助的解决方案。查看您的 theme.xml 文件。
更改为
android:theme="@style/Theme.AppCompat.NoActionBar"
A solution which has helped me before. Have a look in your themes.xml file .
Change to
android:theme="@style/Theme.AppCompat.NoActionBar"