I am trying to add two numbers together from EditText fields. So far I have the code below that I believe converts the EditText field \'pos1_deg\' & \'pos2_deg\' into in
You can try to do String.valueOf(deg_sum)
You can make your degSum not int, but Integer, so the toString method will be available.