当我收到推送通知时,我想从另一个类FcmMessagingService.java检查WEBVIEW中的当前URL(在MainActivity.java中)。
如果currentUrl ==提到了URL,我想执行特定的任务。
您能告诉我们如何从MainActivity获取 currenturl 吗?
public class FcmMessagingService extends FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
String title = remoteMessage.getNotification().getTitle();
if (currenturl == "www.example.com")) {
// task
}else{
}
答案 0 :(得分:1)
要获得currenturl,请执行此操作
currenturl= mWebView.getUrl();
替换currenturl = "www.example.com"
currenturl.equals("www.example.com")