单击Firebase通知有效内容的通知时打开自定义Intent

时间:2016-11-21 08:06:41

标签: firebase push-notification notifications payload firebase-notifications

点击通知时,应该打开自定义Intent for Firebase通知有效负载。

  设置任何意图名称

时,

click_action返回null

那么,是否可以在点击通知时设置意图。

先谢谢

1 个答案:

答案 0 :(得分:1)

  

click_action:表示与用户点击相关联的操作   通知。设置此项后,将生成具有匹配意图的活动   用户点击通知时会启动过滤器。

因此,您必须在清单文件中为您的活动添加意图过滤器。

Option Explicit
Private bCheck As Boolean

' [1] assign True to boolean variable
Private Sub TextBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
    bCheck = True       ' set marker to True
End Sub

Private Sub TextBox1_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
    If bCheck Then
        bCheck = False  ' reset marker to False
      ' [2][3] extract the highlighted doubleclicked word from multi-line textbox 
        MsgBox Trim(Mid(Replace(Me.TextBox1.Text, vbLf, ""), Me.TextBox1.SelStart + 1, Me.TextBox1.SelLength))
    End If
End Sub