0

我是 Android 编程新手。我下面的程序做了一个简单的华氏到摄氏转换。如果您在 Farenheit EditText 中输入值,它将立即将其转换为摄氏度。反之亦然。

我收到以下错误:

当我继续在华氏文本框中输入值时,没有问题。当我也删除该值时,它会一直删除到最后一个字符。如果我按退格键(在模拟器中)删除最后一个字符,它将停止运行。运行代码时出现以下错误。

2)即使焦点设置在摄氏 EditText 上,模拟器在启动时始终将华氏温度显示为焦点

3)我在摄氏编辑文本中所做的更改未反映在华氏温度中。

(请不要以为我在论坛发帖没有调试,我已经尝试了3个多小时才发到这里,这样我可以保持这个论坛的干净)

07-29 01:59:21.189:E/AndroidRuntime(1390):java.lang.NumberFormatException:无效浮点数:“”

以下是我的 MainActivity.Java

  public class MainActivity extends Activity {
     private EditText celsiusText;
     private EditText farenheitText;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        celsiusText = (EditText) findViewById(R.id.editText1);
        farenheitText = (EditText) findViewById(R.id.editText2);
        celsiusText.requestFocus();
        celsiusText.setOnFocusChangeListener((OnFocusChangeListener) this);
        farenheitText.setOnFocusChangeListener((OnFocusChangeListener) this);
    }
       public void onFocusChange(View v, boolean hasFocus)

        {

           TextWatcher watcher1 = new TextWatcher(){
            public void afterTextChanged(Editable s) {

               }

               public void beforeTextChanged(CharSequence s, int start, 
                 int count, int after) {
               }
            public void onTextChanged(CharSequence S,int start,int before, int count){
                float inputValue;
                if (!S.toString().equals(""))
                {
                    inputValue = Float.parseFloat(S.toString());
                             ((EditText)findViewById(R.id.editText1)).setText(String
                                    .valueOf(convertFahrenheitToCelsius(inputValue)));

                }
                else
                {
                     ((EditText)findViewById(R.id.editText1)).setText("");
                    return;
                }
                        }
           };



           TextWatcher watcher2 = new TextWatcher()
           {
                        public void afterTextChanged(Editable s) {

                   }

                   public void beforeTextChanged(CharSequence s, int start, 
                     int count, int after) {
                   }
                public void onTextChanged(CharSequence S,int start,int before, int count){
                    float inputValue;
                    if (!S.toString().equals(""))
                    {
                        inputValue = Float.parseFloat(S.toString());
                     ((EditText)findViewById(R.id.editText2)).setText(String
                                .valueOf(convertCelsiusToFahrenheit(inputValue)));

                    }
                    else
                    {
                        ((EditText)findViewById(R.id.editText2)).setText("");
                        return;
                    }
                            }
                };

                if((v == findViewById(R.id.editText2)) &&  (hasFocus==true)) 
                {
                farenheitText.addTextChangedListener(watcher1);
                }
                else if ((v == findViewById(R.id.editText1)) &&  (hasFocus==true)) 
                {
                    ((EditText)findViewById(R.id.editText1)).setText("");
                celsiusText.addTextChangedListener(watcher2);
                }
        }





//Converts to celsius
      private float convertFahrenheitToCelsius(float fahrenheit) {
        return ((fahrenheit - 32) * 5 / 9);
      }

      // Converts to fahrenheit
      private float convertCelsiusToFahrenheit(float celsius) {
        return ((celsius * 9) / 5) + 32;
      }

}

我的 Activity_main.xml 是

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="128dp"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="62dp"
        android:ems="10"
        android:inputType="numberSigned" >

        <requestFocus />
    </EditText>

    <EditText
        android:id="@+id/editText2"
        android:layout_width="128dp"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/editText1"
        android:layout_alignBottom="@+id/editText1"
        android:layout_alignParentRight="true"
        android:ems="10"
        android:inputType="numberSigned" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/editText1"
        android:layout_below="@+id/editText1"
        android:layout_marginTop="18dp"
        android:text="@string/celsius"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/textView1"
        android:layout_alignBottom="@+id/textView1"
        android:layout_alignRight="@+id/editText2"
        android:text="@string/fahrenheit"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

正如您所看到的,我的下一步将是编辑两侧的文本框,对于如何将此代码转换为摄氏度(使用 setfocus 以便它不会抛出错误)的任何帮助也将不胜感激。

4

3 回答 3

3

问题出在- 方法中onTextChanged()

float inputValue;
if (S != "") {
    inputValue = Float.parseFloat(S.toString());
    // ...
}

if 永远不会为真,因为您检查的字符串对象是不一样的。正确的方法是:

if (!S.toString().equals(""))

或者,甚至更好:

if (S.length > 0)

这会导致Float.parseFloat(String)使用空字符串调用 - 方法,从而抛出NumberFormatException.

于 2012-07-29T12:59:24.157 回答
0

您的代码正在尝试将 NULL 值转换为摄氏度,

if(inputValue==null){
// Handle the situation here
}
于 2012-07-29T12:57:29.733 回答
0

尝试检查字符串的长度:

if (S != "" && S.length() > 0){
                    inputValue = Float.parseFloat(S.toString());
                    celsiusText.setText(String
                            .valueOf(convertFahrenheitToCelsius(inputValue)));
                }
于 2012-07-29T12:59:32.803 回答