我想通过点击一个按钮为所有应用程序活动设置不同的背景颜色,但是现在我只针对一个活动完成了它,我无法为所有活动执行此操作。这是粗鲁的代码:
optionlayout = (RelativeLayout) findViewById(R.id.optionlayout);
backgroundbutton = (Button) findViewById(R.id.backgroundbutton);
int counter = 0;
backgroundbutton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (counter ==0) {
optionlayout.setBackgroundColor(0xFF5774B3);
counter++;
}else if (counter == 1){
optionlayout.setBackgroundColor(0xFF0CC258);
counter++;
} else if (counter==2){
optionlayout.setBackgroundColor(0xCC000000);
counter++;
}else if (counter== 3){
optionlayout.setBackgroundColor(0xFFFFFFFF);
counter = 0;
}
}
});
我想改变
optionlayout.setBackgroundColor(0xFF0CC258);
使用可永久更改所有活动中背景的操作。感谢
答案 0 :(得分:2)
您可以使用共享偏好设置并将计数器存储在那里,并且在onCreate of activities中首先查看您的共享偏好设置,以确定设置背景的颜色。
答案 1 :(得分:0)
你不能。无法通过活动更改整个应用程序的属性。您可以创建扩展Activity
并实现OnClickListener
的自定义类。
这样的事情:
class MyCustomActivity extends Activity implements View.OnClickListener{
@Override
public void onClick(View v) {
//your code inside onClick()
}
}
然后你可以将你的活动扩展到这个,例如:
class MainActivity extends MyCustomActivity { ... }
答案 2 :(得分:0)
您可以尝试使用extras方法。
将更改从活动传递到活动可能会有所帮助。
每次设置页面的过程都比较长,但我没有看到任何其他方式。我仍然愿意接受建议
// you can have multiple extras.
String bgColor = "yourColor";
Intent newIntent = new Intent(thisActivity.this, theNextActivity.class);
// Start new activity
dispatchIntent.putExtra("bgColor", bgColor);
// Send color to new activity
startActivity(newIntent);
finish();
// Get the background color in the new page
Bundle extras = getIntent().getExtras();
String bgColor = extras.getString("bgColor");
// The trick is to get the string into your background color format such as
0xFF5774B3