android按钮背景颜色如何设置

avatar
作者
猴君
阅读量:0

在Android中,可以通过以下方法设置按钮的背景颜色:

  1. 在XML布局文件中设置按钮的背景颜色:
<Button     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="Button"     android:background="@color/colorAccent" /> 

其中,@color/colorAccent 是指向颜色资源文件中定义的颜色。

  1. 在代码中设置按钮的背景颜色:
Button button = findViewById(R.id.button); button.setBackgroundColor(ContextCompat.getColor(this, R.color.colorAccent)); 

其中,R.color.colorAccent 是指向颜色资源文件中定义的颜色。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!