在我的应用程序中,我有 3 个编辑文本框,在前两个编辑框中,用户将输入输入。在第三个编辑文本框中,我必须将这两个值相乘,并且必须在用户触摸第三个编辑文本框时显示。
请任何人帮助我。
我为此尝试过:
total.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
// TODO Auto-generated method stub
System.out.println("insidefocus");
String tot=String.valueOf((Integer.parseInt(price.getText().toString()))*(Integer.parseInt(qty.getText().toString())));
System.out.println("tot="+tot);
total.setText(tot);
return false;
}
});