我在字符串(A)中首选值为20,我需要减去int(B)的值,范围从0到20, 我试过了
String A = prefs.getString(A, "20");
int B=intent.getIntExtra(trn+".Intb", 0);
TextView tvRest=(TextView)findViewById(R.id.txtrest);
tvRest.setText(A -(B));
我需要像我一样在TextView
txtrest
中显示AB的结果。
在获得结果后,您可以在首选项中编写C最终查找而不是A的初始值。
答案 0 :(得分:2)
执行以下操作,
int A = Integer.ParseInt(prefs.getString(A, "20"));
int B=intent.getIntExtra(trn+".Intb", 0);
int C=A-B;
TextView tvRest=(TextView)findViewById(R.id.txtrest);
tvRest.setText(String.valueOf(C));