为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我按等于的按钮时,显示器没显示出结果?

case R.id.btdengyu:

getresult();

break;

}

}

private void getresult(){

String dy=editText1.getText().toString();

if(dy==null||dy.equals("")){

return;};

if(!dy.contains("")){

return;

};

double re=0;

String s1=dy.substring(0,dy.indexOf(" "));

String fh=dy.substring(dy.indexOf(" ")+1,dy.indexOf(" ")+2);

String s2=dy.substring(dy.indexOf(" ")+3);

if(!s1.equals("")&&!s2.equals("")){

double d1=Double.parseDouble(s1);

double d2=Double.parseDouble(s2);

if(fh.equals("+")){

re= d1+d2;

}

else if(fh.equals("-")){

re=d1-d2;

}

else if(fh.equals("*")){

re=d1*d2;

}

else if(fh.equals("/")){

if(d2==0){

re=0;

}

else{re=d1/d2;

}

};

};

};



}


正在回答

1 回答

你最后得到的re没有写入editText1。

例如:editText1.setText(re);    // 不保证语法正确,但大概是这个意思。

0 回复 有任何疑惑可以回复我~
#1

皇国国熙 提问者

试过,语法不正确
2017-05-13 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312585    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

为什么我按等于的按钮时,显示器没显示出结果?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信