| | |
| | | private static final SvrManager ourInstance = new SvrManager(); |
| | | private static final String TAG = "SvrManager"; |
| | | private MyServiceConn conn; |
| | | private Intent intent; |
| | | |
| | | |
| | | private IAYExamListener mCallback; |
| | |
| | | |
| | | } |
| | | public void bindRemoteService(Context mContext){ |
| | | Intent intent = new Intent(mContext,RemoteService.class); |
| | | intent = new Intent(mContext,RemoteService.class); |
| | | conn = new MyServiceConn(); |
| | | mContext.bindService(intent,conn, Context.BIND_AUTO_CREATE); |
| | | } |
| | |
| | | } |
| | | } |
| | | mContext.unbindService(conn); |
| | | if (intent!=null){ |
| | | mContext.stopService(intent); |
| | | } |
| | | } |
| | | |
| | | /** |