android:textColor -How to Set the Text Color of a Button

android:textColor was added in API Level 1
Set the Color of text
1. Add a Button.

2. Open the layout, main.xml and add the following highlighted code inside the <Button> tag. This will set the text color to green.

<Button
     ....
    android:textColor="#00CC00"
/>