我有一个可与TextSwitcher配合使用的数字手表。我想添加一种颜色选择。我添加了ColorPicker AmbilWarna(作品)。 问题: 如果我选择的颜色仅设置为秒。手表采用H:MM:SS的形式。 关闭应用程序并打开整个手表的颜色更改后。 如何立即设置整体? 如何一次设置数字时钟的颜色?
public View makeView() {
//for ColorPicker AmbilWarna
int color = PreferenceManager
.getDefaultSharedPreferences(BedClock.this).getInt(
COLOR_PREFERENCE_KEY, Color.WHITE);
//****************************************************************
textView = (TextView) LayoutInflater.from(
getApplicationContext()).inflate(R.layout.bedclock_text,
mSwitchHour, false);
textView.setTextColor(color);
return textView;
}