【发布时间】:2020-05-15 04:48:14
【问题描述】:
我无法在我的活动中更改按钮的背景。这是一个以形状为背景的基本按钮。
在我的 main.xml 中,我的 RelativeLayout 看起来像这样:
<Button
android:id="@+id/mybtn"
android:background = "@drawable/rounded_button"
android:elevation="0dp" />
在我的 MainActivity 中,我尝试像这样更改按钮:
Button btn = findViewById(R.id.mybtn);
btn.setBackgroundColor(Color.RED);
但它说:
无法解析方法 setBackgroundColor
【问题讨论】:
-
检查你的导入中是否有
import android.widget.Button这一行 -
什么是@drawable/rounded_button?
标签: android android-layout android-button