gpt4 book ai didi

android - 按钮颜色因背景颜色而改变

转载 作者:行者123 更新时间:2023-11-30 01:58:53 26 4
gpt4 key购买 nike

我使用 android:background 更改了 Activity 的背景颜色。背景颜色发生变化,但按钮背景颜色也发生变化。我想保留具有默认背景和属性的按钮。

按钮如图所示。

Button looks like this

Activity 的 XML 文件如下

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#116493">

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonStyleSmall"
android:text="Button" />

</LinearLayout>

最佳答案

@Nimit Aggarwal:请更新您的主题设置。删除 style="?android:attr/buttonStyleSmall" 。添加button

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

为了演示目的,请关注 Android ImageButton selector example

关于android - 按钮颜色因背景颜色而改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31787384/

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