减法操作并将结果写入共享首选项

时间:2014-04-28 13:14:42

标签: android

我在字符串(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的初始值。

1 个答案:

答案 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));