Android开发:使用系统接口保存和改变参数

应用场景:项目开发中,遇到有些参数,比如系统设置开关状态,需要保存起来,改变了需要通知其他应用,开机重启,要保存上一次的状态。

方案一:
直接用系统提供的接口
样例实现代码:

    public static final String ADAYO_ChildrenLossSafeTip = "ChildrenLossSafeTip";

	mContext = getContext();
	Settings.System.getInt(mContext.getContentResolver(), ADAYO_ChildrenLossSafeTip, 0);//0 默认

注册监听变化接口

 private void registerProvider() {
        if (mContext != null) {
            if(mContext.getContentResolver()!=null){
                mContext.getContentResolver().registerContentObserver(Settings.System.getUriFor(ADAYO_ChildrenLossSafeTip), true, mChildrenLossSafeTipObserver);
                
            }
        }
    }

注消监听变化接口

 private void unRegisterProvider() {
        if (mContext != null) {
            if (mContext.getContentResolver() != null) {
                mContext.getContentResolver().unregisterContentObserver(mChildrenLossSafeTipObserver);
                
            }
        }
    }

监听变化接口


    private ContentObserver mChildrenLossSafeTipObserver = new ContentObserver(new Handler()) {
        @Override
        public void onChange(boolean selfChange) {
            Context context = getContext();
            if (!selfChange) {
                if (context != null) {
                    int iChildrenLossSafeTip = Settings.System.getInt(context.getContentResolver(), ADAYO_ChildrenLossSafeTip, 0);
                    Log.d(TAG,"ChildrenLossSafeTipObserver_"+iChildrenLossSafeTip);
                    if (mTlChildrenLossSafeTip != null) {
                        switch (iChildrenLossSafeTip) {
                            case 1:
                               
                                break;
                            case 0:
                              
                                break;
                        }
                    }
                }
            }
        }
    };
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值