Android TextSwitcher设置颜色

时间:2012-08-28 11:07:23

标签: android

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

}

0 个答案:

没有答案