我正在处理我的应用程序,该应用程序即将完成,我想实现一个功能,用户可以点击按钮,背景会改变颜色。我该怎么做?我希望彼此相邻的两个按钮,当点击时更改背景颜色。按钮1会将其更改为颜色,按钮2会将其更改为颜色2。我尝试编写它,但它没有显示我想要的方式,所以我在这里问,因为我想从头开始按钮。
有人可以帮我解决这个问题吗?
答案 0 :(得分:0)
您可以按如下方式更改活动本身的背景颜色:
这是活动的XML文件: -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:id="@+id/backgroundId">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RED"
android:id="@+id/redButton"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="70dp"
android:onClick="onRedButtonClick"/>
</RelativeLayout>
这是java代码:
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onRedButtonClick(View view) {
RelativeLayout background = (RelativeLayout) findViewBy(R.id.backgroundId);
background.setBackgroundColor(Color.RED);
}
希望这有帮助。