Cambiar el color del texto en TextView Android

TextView text = (TextView) findViewById(R.id.text);
text.setTextColor(Color.parseColor("#FFFFFF"));
Gleaming Gull