0

我有一块可与 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;

}
4

0 回答 0