I have been attempting to make my first android application (a simple temperature converter) in Eclipse, but when I click the button on my phone the app crashes. Here is the ful
You can not set Integers to TextViews. You have to convert them into Strings.
myTextView.setText(String.valueOf(output));