如何获得android:TextView前景色和背景色

How to get android:TextView foreground and background color

我有 6 个 TextView,我在其中声明了可点击。所有 TextView 访问相同的 onClick 方法。

如何获取点击的TextView的前景色和背景色?

一往直前,什么都不在乎。

public void onClick(View v) {
       if (v instanceof TextView)
        int colorOfSelectedTextView = ((TextView) v).getCurrentTextColor();
    }