자바 에서 Handler 의 표준 사용 방식

1543 단어 Java
자바 언어 에서 Handler 를 Activity 의 내부 클래스 로 직접 설명 하고 Handler 를 사용 합 니 다. 비정 상 내부 클래스 는 외부 클래스 의 암시 적 인용 을 가지 고 있 습 니 다. 그러면 외부 클래스 가 쓰레기 에 회수 되 지 못 해 메모리 가 누 출 될 수 있 습 니 다.
그러므로 규범 화 된 Handler 사용 방식 은 다음 과 같다.
Handler 의 기본 클래스:
public class UIHandler extends Handler{

     protected WeakReference ref;

     public UIHandler(T cla){
        ref = new WeakReference(cla);
     }

      public T getRef(){
          return ref != null ? ref.get() : null;
      }
}

Handler 인 스 턴 스 활용:
public class MainActivity extends Activity{

    private final MainHandler mHandler = new MainHandler(this);

    @Override
    protected void onCreate(Bundle savedInstanceState){
        super.oncreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mHandler.post(mRunnable);
    }

    private static final Runnable mRunnable = new Runnable(){

        @Override
         public void run(){

         }
    };

    private class MainHandler extends UIHandler{
         private MainHandler(MainActivity activity){
             super(activity);
         }
         
         @Override
         public void handleMessage(Message msg){
             super.handleMessage(msg);
             MainActivity activity = (MainActivity)ref.get();
             if(activity != null){
                if (activity.isFinishing()
                    return;
          switch(msg.what){
            case 1:
            break;
          }
             }
         }
    }
}    

좋은 웹페이지 즐겨찾기