public class DataHelper extends Activity{
TextView tvRslt;
public static int insert(String firstFB, String firstRL) {
// TODO Auto-generated method stub
Integer a = new Integer(firstFB).intValue();
Integer b = new Integer(firstRL).intValue();
int firstResult = a / b;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.result);
我想设置整数“firstResult”以显示在TextEdit“tvRslt”上。
我该怎么做?
如果需要更多信息,请与我们联系。
答案 0 :(得分:0)
有异常处理:
try {
tvRslt.setText(firstResult + "");
} catch (DivideByZeroException e) {
// Do something with exception condition.
}
无异常处理:
// Before dividing check if denominator is 0.
int firstResult = (b == 0) ? 0 : a / b;
tvRslt.setText(firstResult + "");
这当然要求你引用textview,因为我假设你在代码中没有向我们展示。