是否可以通过代码(java)更改整个应用程序或活动的字体颜色?我想从共享首选项中读取颜色,然后更改活动内的字体颜色。我已经为背景做了这个,但它确实有效,但我不知道如何更改字体全球。
public void usePreferences(){
SharedPreferences settings = getSharedPreferences(OptionListActivity.MY_PREFERENCES, MODE_WORLD_READABLE);
String backColorAsString = settings.getString(getResources().getString(R.string.background_color), "0");
Log.i(getResources().getString(R.string.font_color), backColorAsString);
int backColorRGB = 0;
if (backColorAsString.equals("RED"))
backColorRGB = Color.RED;
else if (backColorAsString.equals("BLUE"))
backColorRGB = Color.BLUE;
else if (backColorAsString.equals("GREEN"))
backColorRGB = Color.GREEN;
findViewById(android.R.id.content).setBackgroundColor(backColorRGB);
//works great till here
String fontColorAsString = settings.getString(getResources().getString(R.string.font_color), "0");
int fColorRGB = 0;
if (fontColorAsString.equals("RED"))
fColorRGB = Color.RED;
else if (fontColorAsString.equals("BLUE"))
fColorRGB = Color.BLUE;
else if (fontColorAsString.equals("GREEN"))
fColorRGB = Color.GREEN;
//WHAT TO DO NOW?
}
编辑:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction().add(R.id.container, new PlaceholderFragment()).commit();
}
usePreferences();
}
答案 0 :(得分:2)
第1部分
您可以创建自定义TextView。要使文本颜色设置得最快,请在应用程序类中设置全局颜色。 (不是主要活动)
public class ColorTextView extends TextView {
private static int color = Color.BLUE;
public ColorTextView(Context context) {
super(context);
this.setTextColor(color)
}
public ColorTextView(Context context, AttributeSet attrs) {
super(context, attrs);
this.setTextColor(color)
}
public ColorTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.setTextColor(color)
}
public static void setGlobalColor(int newcolor) {
color = newcolor;
}
}
并在xml中使用它,如:
<your.package.name.ColorTextView
//other stuff
/>
最后,您可以在代码中设置颜色,如:
ColorTextView.setGlobalColor(yourColor);
第2部分
设置如下所示的应用程序类,并将usepreferences()
代码粘贴到其中。
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
// paste code and set color here
}
}
最后,要运行此操作,您必须在应用程序标记的Manifest中声明它:
android:name="your.package.name.MyApplication"