String Str = "22";
int d = 2;
int a = Integer.parseInt(Str);
int b = Integer.valueOf(Str).intValue();
String c = Integer.toString(d);
result.setText(a+1);

자바에서는 형변환 결과가 나오는데
안드로이드 적용만 시키면 구동은 되는데 오류가 나네요 왜그런걸까요?