I am using Firebase Cloud Messaging on Android.
Add action in your manifest activity like below:
And add click_action in your sending notification server(my example is PHP)
$notification= array(
'title' => '快訊',
"body" => "市場大特價",
'tickerText' => 'Ticker text here',
'vibrate' => 1,
'sound' => 1,
'largeIcon' => 'large_icon',
'smallIcon' => 'small_icon',
'click_action' => 'AnyNameYouWant');