equal
deleted
inserted
replaced
54 button.setOnClickListener(new CallListener()); |
54 button.setOnClickListener(new CallListener()); |
55 mContext.bindService(SERVICE_INTENT, mServConn, Service.BIND_AUTO_CREATE); |
55 mContext.bindService(SERVICE_INTENT, mServConn, Service.BIND_AUTO_CREATE); |
56 } |
56 } |
57 |
57 |
58 @Override |
58 @Override |
|
59 protected void onStop() { |
|
60 // TODO Auto-generated method stub |
|
61 super.onStop(); |
|
62 mContext.unbindService(mServConn); |
|
63 } |
|
64 |
|
65 @Override |
59 public void dismiss() { |
66 public void dismiss() { |
60 super.dismiss(); |
67 super.dismiss(); |
61 mContext.unbindService(mServConn); |
68 |
62 } |
69 } |
63 |
70 |
64 /** |
71 /** |
65 * Event simple click on call button. |
72 * Event simple click on call button. |
66 */ |
73 */ |