Android Service基本使用

对于多数朋友来说Service都不会陌生,大名鼎鼎的安卓四大组件,主要在后台操作一些耗时的逻辑,或者去执行某些长期运行的任务,当我们退出程序的时候,程序还能在后台继续运行。

Service基本用法

要用肯定是要启动,service的启动和activity的类似

开启服务
startService(new Intent(ServiceActivity.this, MyService.class));
关闭服务
stopService(new Intent(ServiceActivity.this, MyService.class));

运行结果是:
当使用startService的时候,再次点击开启服务,只会走onStartCommand()方法, onCreate()方法不会再执行。

Service和Activity通信

当启动Service之后,就可以在onCreate()或者onStartCommand()方法中执行具体逻辑。
在代码中可以看到onBind()这个方法一直没有使用,这个方法其实就是用于和Activity建立关联的

注意:当通过startService和BinderService都启动了,想要销毁服务,不是说调用stopService和UnbinderService就销毁了,这只是停止了服务和解绑了服务,只有服务停止了和解绑的情况下服务才会被销毁。

Service和Thread的关系

首先Service是运行在主线程中的。也就是说在Service运行耗时操作一定会报ANR异常的。

如果是服务也需要创建子线程去耗时操作,为什么不直接在activity中去操作呢?这是因为activity很难对Thead进行控制,当activity销毁的时候就没有任何办法在获取到创建的子线程的实例,而且在activity中创建子线程实例,另外的activity无法对其操作。但是service不同,所有的Activity都可以与Service进行关联,然后通过ServiceConnect再次获取实例,因此activity可以放心的finish,完全不需要去控制。

public static class MyBinder extends Binder{
        public void startDownload(){

            //下载任务
            new Thread(new Runnable() {
                @Override
                public void run() {
                    Logger.e("数据下载中。。。。。。。");
                }
            }).start();
        }
    }

另外一个进程运行服务

前面我们知道Service是运行在主线程中的,当我们的Service没有开启子线程,做延时操作的时候就会报ANR异常,如果我们在manifest中Service加:

<service android:name="com.example.hmh.firedemo.Service.MyService"
            android:process=":remote">
</service>

运行后发现没有发生ANR异常,使用了远程service后,MyService已经在另外一个进程当中运行了,所有并不会阻塞主进程。在activity和service各自打印一个条日

Log.e("Tag", "current process ID"+Process.myPid());

发现打印出来的是不同的ID,说明他们不是运行在同一个进程中。

1、远程Service有好处也有坏处,当我们使用远程Service的时候,我们在刚才的代码中点击一下binderService按钮,然后就崩溃了,这是因为binderservice点击事件会让activity关联,但是service发现是一个远程的service,也就挂了

让activity和远程Service关联

要让activity和远程的service关联就要使用AIDL来跨进程通信。
AIDL是android的接口定义语言,他能让某个Service和多个应用程序之间进行跨进程通信,可以实现对个应用程序共享同一个Service的功能。

AIDL的用法:

1、先在android studio下创建一个MyAIDLService
Paste_Image.png
// MyAIDLService.aidl
package com.example.hmh.firedemo;

// Declare any non-default types here with import statements

interface MyAIDLService {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
            double aDouble, String aString);
    int plus(int a, int b);
}
2、添加一个Service,
public class MyService extends Service {

    private MyBinder binder = new MyBinder();
    private static final int NOTIFICATION_FLAG = 1;

    @Override
    public void onCreate() {
        super.onCreate();
        Logger.e("onCreate");
        NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        Notification myNotify = new Notification();
        myNotify.icon = R.mipmap.ic_launcher;
        myNotify.tickerText = "TickerText:您有新短消息,请注意查收!";
        myNotify.when = System.currentTimeMillis();
        myNotify.flags = Notification.FLAG_NO_CLEAR;// 不能够自动清除
        RemoteViews rv = new RemoteViews(getPackageName(),
                R.layout.my_notification);
        rv.setTextViewText(R.id.text_content, "hello wrold!");
        myNotify.contentView = rv;
        Intent intent = new Intent(Intent.ACTION_MAIN);
        PendingIntent contentIntent = PendingIntent.getActivity(this, 1,
                intent, 1);
        myNotify.contentIntent = contentIntent;
        manager.notify(NOTIFICATION_FLAG, myNotify);
    }


    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Logger.e("Command");
        return super.onStartCommand(intent, flags, startId);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Logger.e("ondestory");
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return mStub;
    }
    /**AIDL的使用*/
    MyAIDLService.Stub mStub = new MyAIDLService.Stub() {
        @Override
        public void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat, double aDouble, String aString) throws RemoteException {

        }

        @Override
        public int plus(int a, int b) throws RemoteException {
            return a + b;
        }
    };
}
3、在Manifest.xml中添加action
<service android:name="com.example.hmh.firedemo.Service.MyService"
        android:process=":remote">
        <intent-filter>
        <action android:name="com.example.hmh.firedemo.MyAIDLService"></action>
        </intent-filter>
</service>

这里的action提供给外部的应用程序使用

4、写另外一个app,testApp,在MainActivity中添加链接
public class MainActivity extends AppCompatActivity {

    private Button btn;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn = (Button) findViewById(R.id.binder);

        /**绑定服务*/
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                final Intent intent = new Intent();
                intent.setAction("com.example.hmh.firedemo.MyAIDLService");
                final Intent eintent = new Intent(createExplicitFromImplicitIntent(MainActivity.this,intent));
                bindService(eintent,conn, Service.BIND_AUTO_CREATE);
            }
        });
    }



    /*连接服务***/
    private ServiceConnection conn = new ServiceConnection() {

        private MyAIDLService myAIDLService;

        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            myAIDLService = MyAIDLService.Stub.asInterface(service);
            try {
                int plus = myAIDLService.plus(3, 5);
                Log.e("fuck", plus+"  // ");
            } catch (RemoteException e) {
                e.printStackTrace();
            }
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {

        }
    };
    /**android 21以后,调用隐士的服务会崩溃,所有调用这个方法**/
    public static Intent createExplicitFromImplicitIntent(Context context, Intent implicitIntent) {
        PackageManager pm = context.getPackageManager();
        List<ResolveInfo> resolveInfo = pm.queryIntentServices(implicitIntent, 0);
        if (resolveInfo == null || resolveInfo.size() != 1) {
            return null;
        }
        ResolveInfo serviceInfo = resolveInfo.get(0);
        String packageName = serviceInfo.serviceInfo.packageName;
        String className = serviceInfo.serviceInfo.name;
        ComponentName component = new ComponentName(packageName, className);
        Intent explicitIntent = new Intent(implicitIntent);
        explicitIntent.setComponent(component);

        return explicitIntent;
    }
}

利用serviceConnection来获取AIDL的代理对象,然后调用AIDL中的方法。

6、最后打印结果:3+5 = 8,结果正确
Paste_Image.png

在平时服务用的不是很多,所以经常忘记就弄个复习文章来自郭大神的bolg,支持原创:http://blog.csdn.net/guolin_blog/article/details/9797169

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,904评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,581评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,527评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,463评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,546评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,572评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,582评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,330评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,776评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,087评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,257评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,923评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,571评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,192评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,436评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,145评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容