zoukankan      html  css  js  c++  java
  • 开启服务、停止服务、绑定服务、取消绑定服务

    package com.pingyijinren.test;
    
    import android.app.Service;
    import android.content.Intent;
    import android.os.Binder;
    import android.os.IBinder;
    import android.util.Log;
    
    public class MyService extends Service {
        private DownloadBinder downloadBinder=new DownloadBinder();
        public MyService() {
        }
    
        @Override
        public IBinder onBind(Intent intent) {
            // TODO: Return the communication channel to the service.
            //throw new UnsupportedOperationException("Not yet implemented");
            return downloadBinder;
        }
    
        @Override
        public void onCreate(){
            super.onCreate();
            Log.d("MainActivity","create");
        }
    
        @Override
        public int onStartCommand(Intent intent,int flags,int startId){
            Log.d("MainActivity","startCommand");
            return super.onStartCommand(intent,flags,startId);
        }
    
        @Override
        public void onDestroy(){
            super.onDestroy();
            Log.d("MainActivity","destroy");
        }
    
        class DownloadBinder extends Binder {
            public void startDownload(){
                Log.d("MainActivity","startDownload");
            }
    
            public int getProgress(){
                Log.d("MainActivity","getProgress");
                return 0;
            }
        }
    }
    package com.pingyijinren.test;
    
    import android.content.ComponentName;
    import android.content.Intent;
    import android.content.ServiceConnection;
    import android.os.IBinder;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.Button;
    
    public class MainActivity extends AppCompatActivity{
        private Button bindService;
        private Button cancelBindService;
        private MyService.DownloadBinder downloadBinder;
        private ServiceConnection serviceConnection=new ServiceConnection(){
            @Override
            public void onServiceDisconnected(ComponentName name){}
    
            @Override
            public void onServiceConnected(ComponentName name, IBinder service){
                downloadBinder=(MyService.DownloadBinder)service;
                downloadBinder.startDownload();
                downloadBinder.getProgress();
            }
        };
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            bindService=(Button)findViewById(R.id.bindService);
            cancelBindService=(Button)findViewById(R.id.cancelBindService);
    
            bindService.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Intent intent=new Intent(MainActivity.this,MyService.class);
                    bindService(intent,serviceConnection,BIND_AUTO_CREATE);
                    startService(intent);
                }
            });
    
            cancelBindService.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    unbindService(serviceConnection);
                    Intent intent=new Intent(MainActivity.this,MyService.class);
                    stopService(intent);
                }
            });
        }
    }
  • 相关阅读:
    handsontable合并项mergeCells应用及扩展
    handsontable的基础应用
    overflow的使用
    阿里云服务器磁盘空间扩容步骤
    使用Gitblit 在Windows2008 r2上部署Git Server(完整版)
    搭建一个基于微信公众号的信息采集功能
    js数组内置方法
    C#数组、js数组、json
    将EF项目从dbfirst转化为codefirst
    通过HttpWebRequest调用webService
  • 原文地址:https://www.cnblogs.com/zqxLonely/p/5505985.html
Copyright © 2011-2022 走看看