gpt4 book ai didi

java - 单击按钮并更改另一个按钮的背景颜色

转载 作者:行者123 更新时间:2023-11-30 01:41:25 39 4
gpt4 key购买 nike

我正在 Android Studio 中制作应用。在我的一个 Activity 中,有一堆按钮,当您单击其中一个时,会出现一个 PopupWindow 类,上面有 4 个不同颜色的按钮。

我遇到的问题:出现 PopupWindow 后,我希望用户选择 4 个按钮中的一个,并根据他们选择的一种颜色,第一次单击 Activity 的原始按钮将更改其背景颜色到弹出窗口中选择的那个。

弹出代码:

public class Pop extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.popupwindow);

DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);

int width = dm.widthPixels;
int height = dm.heightPixels;

getWindow().setLayout((int)(width*.7), (int)(height*.7));

final Button color1Button = (Button) findViewById(R.id.redbutton);
color1Button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

}
}
}

主要 Activity 代码:

Button a = (Button) findViewById(R.id.button);

a.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

startActivity(new Intent(LambertsLaneSection1Activity.this, Pop.class));

}
});
Button b = (Button) findViewById(R.id.button3);
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(LambertsLaneSection1Activity.this, Pop.class));


}
});
Button c = (Button) findViewById(R.id.button4);
c.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(LambertsLaneSection1Activity.this, Pop.class));


}
});

最佳答案

如果我正确理解您的目标,实现此目标的一种可能方法是使用 SharedPreferences 和 Extras。

共享首选项文件是存储在本地设备文件系统中的文件。它允许您将信息存储为键值对,即使您退出应用程序,信息也会保留在那里。它主要用于存储您的应用程序特定设置。这样,您可以永久保存用户选择的每个按钮的颜色。

当您使用 Intent 从另一个 Activity 启动一个 Activity 时,Extras 用于在 Activite 之间传输信息。

您需要将此添加到您的MainActivityonCreate():

 @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

SharedPreferences sharedPref = getSharedPreferences(
"MY_PREFS", Context.MODE_PRIVATE);

...
}

按钮初始化和处理按下的代码(例如button2):

//-1 is a default value in case no color was selected yet for the particular button
int button2Color = sharedPref.getInt("button2Color", -1);
Button button2 = (Button) findViewById(R.id.button2);
if (button2Color != -1) {
button2.setBackgroundColor(button2Color);
}
button2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(LambertsLaneSection1Activity.this, Pop.class);
//2 here identifies your button, because it is button2
i.putExtra("buttonPressed",2)
startActivity(i);
}
});

在您的弹出窗口中:

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.popupwindow);

//here you get which button was pressed as an Extra
int buttonPressed = getIntent().getExtras().getInt("buttonPressed");
SharedPreferences sharedPref = getSharedPreferences(
"MY_PREFS", Context.MODE_PRIVATE);
...

final Button color1Button = (Button) findViewById(R.id.redbutton);
color1Button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
sharedPref.edit().putInt("button"+buttonPressed+"Color", Color.RED).apply();
}
}
}

关于java - 单击按钮并更改另一个按钮的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34457949/

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