Android开发经验谈Android开发Android技术知识

Android的设计模式-中介者模式

2017-12-21  本文已影响578人  四月葡萄

前言

Android的设计模式系列文章介绍,欢迎关注,持续更新中:

Android的设计模式-设计模式的六大原则
一句话总结23种设计模式则
创建型模式:
Android的设计模式-单例模式
Android的设计模式-建造者模式
Android的设计模式-工厂方法模式
Android的设计模式-简单工厂模式
Android的设计模式-抽象工厂模式
Android的设计模式-原型模式
行为型模式:
Android的设计模式-策略模式
Android的设计模式-状态模式
Android的设计模式-责任链模式
Android的设计模式-观察者模式
Android的设计模式-模板方法模式
Android的设计模式-迭代器模式
Android的设计模式-备忘录模式
Android的设计模式-访问者模式
Android的设计模式-中介者模式
Android的设计模式-解释器模式
Android的设计模式-命令模式
结构型模式:
Android的设计模式-代理模式
Android的设计模式-组合模式
Android的设计模式-适配器模式
Android的设计模式-装饰者模式
Android的设计模式-享元模式
Android的设计模式-外观模式
Android的设计模式-桥接模式

1.定义

用一个中介者对象来封装一系列的对象交互。中介者使得各对象不需要显式地相互引用,从而使其松散耦合,而且可以独立地改变它们之间的交互。

2.介绍

3.UML类图

中介者模式UML类图.jpg
角色说明:

4.实现

说到中介者,肯定就想到了房屋中介,下面以房屋中介为例,房东通过中介发布出售信息,中介就会把房屋信息传递给有这需求的购房者,购房者再通过中介去看房买房等等。

4.1 创建抽象同事角色

无论是房东还是购房者,他们都能够发布信息和接受信息:

    public abstract class Person {//人物类
        protected HouseMediator houseMediator;

        public Person(HouseMediator houseMediator) {
            this.houseMediator = houseMediator;//获取中介
        }

        public abstract void send(String message);//发布信息

        public abstract void getNotice(String message);//接受信息
    }
4.2 创建具体同事角色

下面分别创建一个房东类和一个买房者类:

    public class Purchaser extends Person {//买房者类,继承Person
        public Purchaser(HouseMediator houseMediator) {
            super(houseMediator);
        }

        @Override
        public void send(String message) {
            System.out.println("买房者发布信息:" + message);
            houseMediator.notice(this, message);
        }

        @Override
        public void getNotice(String message) {
            System.out.println("买房者收到消息:" + message);
        }
    }

    public class Landlord extends Person {//房东者类,继承Person
        public Landlord(HouseMediator houseMediator) {
            super(houseMediator);
        }

        @Override
        public void send(String message) {
            System.out.println("房东发布信息:" + message);
            houseMediator.notice(this, message);
        }

        @Override
        public void getNotice(String message) {
            System.out.println("房东收到消息:" + message);
        }
    }
4.3 创建抽象中介者角色

这里就是房屋中介,定义一个通知的方法:

     public interface HouseMediator {//房屋中介类
        void notice(Person person, String msg);//通知方法
    }
4.4 创建具体中介者角色

具体的房屋中介,以链家为例,他们能从房东和买房者获得信息,然后做出不同的行为:

    public class Lianjia implements HouseMediator {//链家,实现HouseMediator
        Purchaser mPurchaser;
        Landlord mLandlord;

        public void setPurchaser(Purchaser purchaser) {//设置买房者
            mPurchaser = purchaser;
        }

        public void setLandlord(Landlord landlord) {//设置房东
            mLandlord = landlord;
        }


        @Override
        public void notice(Person person, String message) {//发送通知
            System.out.println("中介收到信息,并转发给相应的目标人群");
            if (person == mPurchaser) {
                mLandlord.getNotice(message);
            } else if (person == mLandlord) {
                mPurchaser.getNotice(message);
            }
        }
    }
4.5 客户端测试:
     public void test() {
        Lianjia houseMediator = new Lianjia();
        Purchaser purchaser = new Purchaser(houseMediator);
        Landlord landlord = new Landlord(houseMediator);
        houseMediator.setLandlord(landlord);
        houseMediator.setPurchaser(purchaser);

        landlord.send("出售一套别墅");
        System.out.println("------------------------");
        purchaser.send("求购一套学区房");
    }
输出结果:
房东发布信息:出售一套别墅
中介收到信息,并转发给相应的目标人群
买房者收到消息:出售一套别墅
------------------------
买房者发布信息:求购一套学区房
中介收到信息,并转发给相应的目标人群
房东收到消息:求购一套学区房

5. 应用场景

6. 优点

7. 缺点

8. Android中的源码分析

Android中的锁屏功能就用到了中介者模式,KeyguardService(锁屏服务)通过KeyguardViewMediator(锁屏中介者)来协调各种Manager的状态以达到锁屏的功能。这里KeyguardService和各种Manager等等都充当了同事的角色。

8.1 KeyguardService的源码

    public class KeyguardService extends Service {//锁屏服务,同事角色

        private KeyguardViewMediator mKeyguardViewMediator;//锁屏中介者

        @Override
        public void onCreate() {
            ((SystemUIApplication) getApplication()).startServicesIfNeeded();
            //初始化中介者
            mKeyguardViewMediator = ((SystemUIApplication) getApplication()).getComponent(KeyguardViewMediator.class);
        }

        private final IKeyguardService.Stub mBinder = new IKeyguardService.Stub() {

            @Override // Binder interface
            public void addStateMonitorCallback(IKeyguardStateCallback callback) {
                checkPermission();

                mKeyguardViewMediator.addStateMonitorCallback(callback);//调用中介者的接口
            }

            @Override // Binder interface
            public void verifyUnlock(IKeyguardExitCallback callback) {
                checkPermission();

                mKeyguardViewMediator.verifyUnlock(callback);//调用中介者的接口
            }
            
            //其他代码略
            
        };
    }

8.2 KeyguardViewMediator的源码

    public class KeyguardViewMediator extends SystemUI {//锁屏中介者
        //各种Manager
        private AlarmManager mAlarmManager;
        private AudioManager mAudioManager;
        private StatusBarManager mStatusBarManager;
        private PowerManager mPM;
        private IWindowManager mWM;
        private TrustManager mTrustManager;
        private SearchManager mSearchManager;
        private PowerManager.WakeLock mShowKeyguardWakeLock;
        private StatusBarKeyguardViewManager mStatusBarKeyguardViewManager;

        //其他代码略

        private void playSound(int soundId) {//通过AudioManager去播放声音
            if (soundId == 0) return;
            final ContentResolver cr = mContext.getContentResolver();
            if (Settings.System.getInt(cr, Settings.System.LOCKSCREEN_SOUNDS_ENABLED, 1) == 1) {

                mLockSounds.stop(mLockSoundStreamId);
                // Init mAudioManager
                if (mAudioManager == null) {
                    mAudioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
                    if (mAudioManager == null) return;
                    mUiSoundsStreamType = mAudioManager.getUiSoundsStreamType();
                }
                // If the stream is muted, don't play the sound
                if (mAudioManager.isStreamMute(mUiSoundsStreamType)) return;

                mLockSoundStreamId = mLockSounds.play(soundId,
                        mLockSoundVolume, mLockSoundVolume, 1/*priortiy*/, 0/*loop*/, 1.0f/*rate*/);
            }
        }
        
    }

KeyguardViewMediator中通过playSound方法能够协调AudioManager去控制声音的播放等等,其他Manager同理。

相关文章阅读
Android的设计模式-设计模式的六大原则
一句话总结23种设计模式则
创建型模式:
Android的设计模式-单例模式
Android的设计模式-建造者模式
Android的设计模式-工厂方法模式
Android的设计模式-简单工厂模式
Android的设计模式-抽象工厂模式
Android的设计模式-原型模式
行为型模式:
Android的设计模式-策略模式
Android的设计模式-状态模式
Android的设计模式-责任链模式
Android的设计模式-观察者模式
Android的设计模式-模板方法模式
Android的设计模式-迭代器模式
Android的设计模式-备忘录模式
Android的设计模式-访问者模式
Android的设计模式-中介者模式
Android的设计模式-解释器模式
Android的设计模式-命令模式
结构型模式:
Android的设计模式-代理模式
Android的设计模式-组合模式
Android的设计模式-适配器模式
Android的设计模式-装饰者模式
Android的设计模式-享元模式
Android的设计模式-外观模式
Android的设计模式-桥接模式

上一篇下一篇

猜你喜欢

热点阅读