好的,问题是。在我的 Android 应用程序中,我有两个单独的活动用于选项和主要活动。主要活动中有一个地方,当它检查选项的变化并应用样式时。它看起来像这样:
if (prefs.getBoolean("opt_changed", true)) {
Theme = prefs.getInt("theme", Theme);
Font = prefs.getInt("font", Font);
Size = prefs.getInt("size", Size);
SetApplicableStyle(this, Theme, Font, Size);
/** Setting opt_changed to false. */
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("opt_changed", false);
editor.commit(); // apply changes
}
SetApplicableStyle
在这里调用的方法看起来是这样的:
public void SetApplicableStyle (DTypeActivity dTypeActivity, int Theme, int Font, int Size) {
// Retrieving the EditText and the View as objects
final EditText edit_text = (EditText) findViewById(R.id.editText1);
final View main_view = (View) findViewById(R.id.mainview);
// Setting the theme
switch(Theme){
case 1:
SetThemeLight (this);
break;
case 2:
SetThemeBlue (this);
break;
case 3:
SetThemeDark (this);
break;
}
// Setting the font
switch(Font){
case 1:
SetFontSans (this);
break;
case 2:
SetFontSerif (this);
break;
case 3:
SetFontMono (this);
break;
}
// Setting the size
switch(Size){
case 1:
SetSizeSm (this);
break;
case 2:
SetSizeMd (this);
break;
case 3:
SetSizeBg (this);
break;
}
}
作为Set[Something][Somewhat]
方法的示例,有SetThemeLight
一个:
public void SetThemeLight (DTypeActivity dTypeActivity) {
final EditText edit_text = (EditText) findViewById(R.id.editText1);
final View main_view = (View) findViewById(R.id.mainview);
main_view.setBackgroundDrawable(getResources().getDrawable(R.drawable.grey_background));
edit_text.getBackground().setAlpha(0);
edit_text.setTextColor(getResources().getColor(R.color.DrText));
}
我的问题涉及这个简单应用程序中使用的方法的数量。我一直在考虑减少代码量并实现该SetApplicableStyle
方法。现在我在想是否可以摆脱Set[Something][Somewhat]
它们并将它们的线路直接连接到SetApplicableStyle
开关的外壳上。我主要关心的是方法的数量,但我知道,巨大的方法也是一种不好的做法。这里有什么更好的解决方案?
完整的源代码可在此处获得。