EditText字段的值相互依赖

时间:2013-08-15 22:00:02

标签: java android

我正在尝试构建温度转换器(F - > C和C - > F)。

我有2个ET字段。当用户输入一个时,另一个显示转换值,反之亦然。

我知道类似的程序已经构建,但我找不到解决方案。

它适用于一个字段,但当我尝试编辑另一个字段时应用程序关闭。

这是我的代码:

public class Temp extends Activity implements OnClickListener, OnFocusChangeListener {

private EditText temp_f, temp_c;

    protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.temp);

    temp_f = (EditText) findViewById(R.id.temp_f_inp);
    temp_c = (EditText) findViewById(R.id.temp_c_inp);

    temp_c.setOnFocusChangeListener((OnFocusChangeListener) this);
    temp_f.setOnFocusChangeListener((OnFocusChangeListener) this);

}

private TextWatcher tempc = new TextWatcher() {
    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {

        if (temp_c.getText().length() == 0) 
        {
            temp_f.setText("");
        } else {
            float convValue = Float.parseFloat(temp_c.getText()
                    .toString());

            conv_f = ((convValue - 32) * 5 / 9);

            temp_f.setText(String.valueOf(new DecimalFormat(
                    "##.###").format(conv_f)));
        }

    }
    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
    @Override
    public void afterTextChanged(Editable s) {

    }       
};

private TextWatcher tempf = new TextWatcher() {
    @Override
    public void onTextChanged(CharSequence s, int start,int before, int count) {

        // TODO Auto-generated method stub
                    if (temp_f.getText().length() == 0) 
                    {
                        temp_c.setText("");
                    } else {

                        float convValue = Float.parseFloat(temp_f.getText()
                                .toString());

                        conv_c = ((convValue * 9) / 5 + 32);

                        temp_c.setText(String.valueOf(new DecimalFormat(
                                "##.###").format(conv_c)));

    }
    @Override
    public void beforeTextChanged(CharSequence s, int start,int count, int after) {}
    @Override
    public void afterTextChanged(Editable s) {

    }
};

@Override
public void onFocusChange(View v, boolean hasFocus) {
        if ((v == findViewById(R.id.temp_c_inp)) && (hasFocus==true)) {
            temp_c.addTextChangedListener(tempc);
        }

        else if((v == findViewById(R.id.temp_f_inp)) && (hasFocus==true)){
            temp_f.addTextChangedListener(tempf);
        } 
}

似乎onTextChanged仍保留已修改的第一个ET的值,当我尝试编辑其他ET字段时,它会抛出错误。

非常感谢任何帮助!

谢谢!

2 个答案:

答案 0 :(得分:1)

你可以试试这个:

@Override
 public void onFocusChange(View v, boolean hasFocus) {
     if (v.equals(findViewById(R.id.temp_c_inp))) {
        if(hasFocus){
            temp_c.addTextChangedListener(tempc);
        }else{
            temp_c.removeTextChangedListener(tempc);
        }
     }
    else if(v.equals(findViewById(R.id.temp_f_inp))){
        if(hasFocus){
        I      temp_f.addTextChangedListener(tempf);
        }else{
             temp_f.removeTextChangedListener(tempf);
        }
    } 
}

我自己没有尝试过代码,但我希望它可以帮到你

答案 1 :(得分:0)

逻辑似乎是一个问题。 我要做的是, 1.在文本更改时,不执行任何操作(或仅检查有效输入值) 2.在焦点更改时,执行转换并填充其他文本字段。 此外,您有一些@Override函数,它们本质上是空函数。为什么要覆盖?