1

温度コンバーターを構築しようとしています (F -> C および C -> F)。

私は2つのETフィールドを持っています。ユーザーが一方に入力すると、もう一方には変換された値が表示され、逆も同様です。

同様のプログラムが既にビルドされていることは承知していますが、解決策が見つかりませんでした。

1 つのフィールドでは問題なく動作しますが、別のフィールドを編集しようとするとアプリが閉じます。

これが私のコードです:

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 フィールドを編集しようとするとエラーが発生します。

どんな助けでも大歓迎です!

ありがとうございました!

4

2 に答える 2

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);
        }
    } 
}

自分でコードを試したことはありませんが、参考になれば幸いです

于 2013-08-15T23:08:34.927 に答える
0

ロジックに問題があるようです。私がすることは、 1. テキストの変更時に、何もしない (または有効な入力値をチェックするだけ) 2. フォーカスの変更時に、変換を行い、他のテキスト フィールドに入力します。また、本質的に null 関数である @Override 関数がいくつかあります。オーバーライドする理由

于 2013-08-15T23:13:25.447 に答える