2011-08-16 97 views

回答

2

這樣:

yourListField.setChangeListener(fieldChangeListenerInterfaceImplementation); 

實施FieldChangeListener和實現的實例傳遞給setChangeListener();

+0

謝謝你的迴應拉斐爾。但是我需要Sample Code.plz ... – jeevamuthu

+3

在StackOverflow上使用搜索,在Google上使用搜索。你會發現FieldChangeListener的示例代碼。 – 2011-08-16 15:29:29

+0

好的。謝謝你拉斐爾。 – jeevamuthu

1
listField = new ListField() { 
     protected boolean invokeAction(int action) { 
     UiApplication.getUiApplication().invokeLater(new Runnable() { 
      public void run() { 

        <** apply your code here **>      

        } 
       }); 
       return true; 
      }; 

      public void focusChangeNotify(int index) { 
       mainlist = listField.getSelectedIndex(); 
       listField.invalidate(); 
       super.focusChangeNotify(index); 
      }; 

      protected void onUnfocus() { 
       mainlistflag = true; 
       listField.invalidate(); 
       super.onUnfocus(); 
      }; 

      protected void onFocus(int direction) { 

       mainlistflag = false; 
       super.onFocus(direction); 

      }; 
     }; 
+0

非常感謝...... Mayur – jeevamuthu

相關問題