2012-07-31 126 views
1

我是Android編程新手。 我的下面的程序做了一個簡單的華氏轉換爲攝氏溫度。如果您在Farenheit EditText中輸入數值,則每輸入一次擊鍵,它都會將其轉換爲攝氏溫度。反之亦然。Android EditText onfocuschange不起作用

,我發現了以下錯誤:

1)我做在攝氏編輯文本的變化不會反映在華氏溫度。

(請不要認爲我在論壇上張貼無需調試,我已經嘗試了3個多小時在這裏發帖之前,這樣我可以保持這個論壇乾淨)

1月7日至29日: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> 

我現在只學習Java編程(我是一名SQL程序員)。

+0

問題是在這裏java.lang.NumberFormatException:無效的浮點數:「」。或許你正試圖將一個空字符串轉換爲浮點數。 – 2012-07-31 04:35:54

回答

1

您必須在您的活動類中實現OnFocusChangeListener。

public class MainActivity extends Activity implements OnFocusChangeListener 
{ 
    .... 
    @Overrride 
    public void onFocusChange(View v, boolean hasFocus) 
    { 
     .... 
    } 
    .... 
} 

我想你會得到你時,類型轉換thisOnFocusChangeListener在行(OnFocusChangeListener)這個

編輯::: 我看看到烏爾異常碼。我覺得你的實現應該是這樣的:

celsiusText.addTextChangedListener(new TextWatcher() 
    { 
     @Override 
     public void onTextChanged(CharSequence s, int start, int before, int count) 
     { 
      .... 
     } 

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

     @Override 
     public void afterTextChanged(Editable s) 
     { 
      .... 
     } 
    }); 
    farenheitText.addTextChangedListener(new TextWatcher() 
    { 
     @Override 
     public void onTextChanged(CharSequence s, int start, int before, int count) 
     { 
      .... 
     } 

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

     @Override 
     public void afterTextChanged(Editable s) 
     { 
      .... 
     } 
    }); 

把這段代碼裏面的OnCreate並刪除celsiusText.setOnFocusChangeListener((OnFocusChangeListener) this)ferenheitText.setOnFocusChangeListener((OnFocusChangeListener) this)

+0

當我聲明onFocusChange內部活動時,它在onTextChanged方法中拋出錯誤(同一方法的重複定義...)。正如你所說的,它首先在行(OnFocusListener)中引發了錯誤,但是當我清理該項目時,錯誤消失了。 – Mahesh 2012-07-31 04:28:24

+0

我已經更新了我的答案,請看看它。 – 2012-07-31 05:09:00

+0

Sure PC ..我會盡快更新你,只要我在大概5個小時左右就可以得到我的答案..非常感謝... – Mahesh 2012-07-31 08:38:29

1

有時clearfocus()解決這個問題的線路。嘗試在onCreate()方法或其他合適的代碼位置調用editText1.clearfocus()

+0

謝謝你解決了我的問題:-) – 2014-10-16 19:52:05

相關問題