Changer la couleur du texte dans TextView Android

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