2011-08-16 10 views

答えて

2

この方法:

yourListField.setChangeListener(fieldChangeListenerInterfaceImplementation); 

FieldChangeListenerを実装しsetChangeListener()に実装インスタンスを渡します。

+0

ありがとうございましたRafael。しかし、私はサンプルCode.plzが必要です... – jeevamuthu

+3

StackOverflowで検索を使用し、Googleで検索を使用してください。また、FieldChangeListenerのサンプルコードがあります。 –

+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

関連する問題