Ejemplo n.º 1
0
        static IPersistedState GetPersistedState(Android.OS.Bundle?state)
        {
            var dict = new PersistedState();

            var keyset = state?.KeySet();

            if (keyset != null)
            {
                foreach (var k in keyset)
                {
                    dict[k] = state?.Get(k)?.ToString();
                }
            }

            return(dict);
        }
Ejemplo n.º 2
0
        public override void OnReceive(Context context, Intent intent)
        {
            if (intent?.Action == null)
            {
                return;
            }
            switch (intent.Action)
            {
            case MtcBtSmallon:
            case MtcBtSmalloff:
                try
                {
                    bool smallOn = intent.Action == MtcBtSmallon;
#if DEBUG
                    Android.Util.Log.Info(Tag, string.Format("BT small on: {0}", smallOn));
#endif
                    Intent broadcastIntent = new Intent(NotificationBroadcastAction);
                    broadcastIntent.PutExtra(StateBtSmallOn, smallOn);
                    LocalBroadcastManager.GetInstance(context).SendBroadcast(broadcastIntent);
                }
                catch (Exception)
                {
                    // ignored
                }
                break;

            case MicBtReport:
            {
#if DEBUG
                Android.Util.Log.Info(Tag, "Bt report:");
                Android.OS.Bundle bundle = intent.Extras;
                if (bundle != null)
                {
                    foreach (string key in bundle.KeySet())
                    {
                        Object value       = bundle.Get(key);
                        string valueString = string.Empty;
                        if (value != null)
                        {
                            valueString = value.ToString();
                        }
                        Android.Util.Log.Info(Tag, string.Format("Key: {0}={1}", key, valueString));
                    }
                }
#endif
                if (intent.HasExtra("bt_state"))
                {
                    try
                    {
                        int btState = intent.GetIntExtra("bt_state", 0);
#if DEBUG
                        Android.Util.Log.Info(Tag, string.Format("BT bt_state: {0}", btState));
#endif
                        switch (btState)
                        {
                        case 87:
                        case 88:
                        case 89:
#if DEBUG
                            Android.Util.Log.Info(Tag, "Ignoring bt_state");
#endif
                            break;

                        case 90:
                        {
#if DEBUG
                            Android.Util.Log.Info(Tag, "Sending notification: " + BtUpdateList);
#endif
                            Intent broadcastIntent = new Intent(NotificationBroadcastAction);
                            broadcastIntent.PutExtra(BtUpdateList, btState);
                            LocalBroadcastManager.GetInstance(context).SendBroadcast(broadcastIntent);
                            break;
                        }

                        default:
                        {
#if DEBUG
                            Android.Util.Log.Info(Tag, "Sending notification: " + BtScanFinished);
#endif
                            Intent broadcastIntent = new Intent(NotificationBroadcastAction);
                            broadcastIntent.PutExtra(BtScanFinished, btState);
                            LocalBroadcastManager.GetInstance(context).SendBroadcast(broadcastIntent);
                            break;
                        }
                        }
                    }
                    catch (Exception)
                    {
                        // ignored
                    }
                }
                if (intent.HasExtra("connected_mac"))
                {
                    try
                    {
                        string mac = intent.GetStringExtra("connected_mac");
#if DEBUG
                        Android.Util.Log.Info(Tag, string.Format("BT connected_mac: {0}", mac));
#endif
                        Intent broadcastIntent = new Intent(NotificationBroadcastAction);
                        broadcastIntent.PutExtra(BtNewMac, mac);
                        LocalBroadcastManager.GetInstance(context).SendBroadcast(broadcastIntent);
                    }
                    catch (Exception)
                    {
                        // ignored
                    }
                }
                if (intent.HasExtra("connect_state"))
                {
                    try
                    {
                        int connectState = intent.GetIntExtra("connect_state", 0);
#if DEBUG
                        Android.Util.Log.Info(Tag, string.Format("BT connect_state: {0}", connectState));
#endif
                        ActivityCommon.MtcBtConnectState = connectState != 0;

                        Intent broadcastIntent = new Intent(NotificationBroadcastAction);
                        broadcastIntent.PutExtra(StateBtConnected, ActivityCommon.MtcBtConnectState);
                        LocalBroadcastManager.GetInstance(context).SendBroadcast(broadcastIntent);
                    }
                    catch (Exception)
                    {
                        // ignored
                    }
                }
                break;
            }
            }
        }