I am unable to change text in EditText1 in response to the text change in EditText2
问题 I want the user to enter a temperature in Celsius and display the temperature in fahrenheit and vice versa. I think TextChangedListener would be perfect to convert without any button pressing. The values go on changing as the user types in. The biggest problem I'm having is that the EditText won't take any input. The moment I input anything, the app force closes. Please tell me what's wrong.Here's my code. public class MainActivity extends ActionBarActivity { EditText C, F; Button exit;