我试过以下:
int x=(int)R2.getText().toString();
但它给我一个无法将字符串转换为int的错误.
int x = Integer.parseInt(R2.getText().toString());