Exemplo 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;

            }
        }
Exemplo 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;
            }
        }
Exemplo n.º 3
0
 public static void SetServiceBinder(BackgroundService.ControllerServiceBinder value)
 {
     _binder = value;
 }
Exemplo n.º 4
0
 public override IBinder OnBind(Intent intent)
 {
     this.binder = new ControllerServiceBinder(this);
     return(this.binder);
 }
Exemplo n.º 5
0
 public static void SetServiceBinder(BackgroundService.ControllerServiceBinder value)
 {
     _binder = value;
 }
Exemplo n.º 6
0
 public override IBinder OnBind(Intent intent)
 {
     this.binder = new ControllerServiceBinder(this);
        return this.binder;
 }