Esempio n. 1
0
        public void OnServiceConnected(ComponentName name, IBinder service)
        {
            ControllerServiceBinder compSvcBinder = (ControllerServiceBinder)service;

            if (compSvcBinder != null) {
                this.binder = (ControllerServiceBinder)service;
                App.SetServiceBinder(this.binder);
              //  this.app.binderSet = true;

            }
        }
Esempio n. 2
0
        public void OnServiceConnected(ComponentName name, IBinder service)
        {
            ControllerServiceBinder compSvcBinder = (ControllerServiceBinder)service;

            if (compSvcBinder != null)
            {
                this.binder = (ControllerServiceBinder)service;
                App.SetServiceBinder(this.binder);
                //  this.app.binderSet = true;
            }
        }
Esempio n. 3
0
 public static void SetServiceBinder(BackgroundService.ControllerServiceBinder value)
 {
     _binder = value;
 }
Esempio n. 4
0
 public override IBinder OnBind(Intent intent)
 {
     this.binder = new ControllerServiceBinder(this);
     return(this.binder);
 }
Esempio n. 5
0
 public static void SetServiceBinder(BackgroundService.ControllerServiceBinder value)
 {
     _binder = value;
 }
Esempio n. 6
0
 public override IBinder OnBind(Intent intent)
 {
     this.binder = new ControllerServiceBinder(this);
        return this.binder;
 }