I have to design an xml file in which the color of the text on the Editfield is grey as the application runs on the emulator.But while entering the values into that field I want the values which will be entered by me,to be black in color.How to do this? Say for Example:
<EditText android:text="minuten"
android:textColor="#C0C0C0"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:layout_width="300dip">
</EditText>
Here the color is #C0C0C0(grey),while entering the values on my emulator into the screen,the values should appear black in color.