/// <summary> /// Display protocol dialog /// </summary> private void ShowProtocoldialog() { //Start to process the protocol dialog box. ProtocolDialog dialog = new ProtocolDialog(this); dialog.SetCallback(this); dialog.SetCanceledOnTouchOutside(false); dialog.Show(); }
public void ShowPrivacyDialog() { // If a user does not agree to the service agreement, the service agreement dialog is displayed. if (GetPreferences(AdsConstant.SpProtocolKey, AdsConstant.DefaultSpProtocolValue) == 0) { Log.Info(TAG, "Show protocol dialog."); ProtocolDialog protocolDialog = new ProtocolDialog(this); protocolDialog.SetCallback(this); protocolDialog.SetCanceledOnTouchOutside(false); protocolDialog.Show(); } else { SendMessage(ConsentMsgType, MsgDelayMs); } }
public void ShowPrivacyDialog() { // If a user does not agree to the service agreement, the service agreement dialog is displayed. if (GetPreferences(AdsConstant.SP_PROTOCOL_KEY, AdsConstant.DEFAULT_SP_PROTOCOL_VALUE) == 0) { Log.Info(TAG, "Show protocol dialog."); ProtocolDialog protocolDialog = new ProtocolDialog(this); protocolDialog.SetCallback(this); protocolDialog.SetCanceledOnTouchOutside(false); protocolDialog.Show(); } else { SendMessage(CONSENT_MSG_TYPE, MSG_DELAY_MS); } }