如何从MainActivity中的WebView获取另一个类中的当前URL

时间:2017-05-06 13:06:59

标签: android webview push-notification android-webview

当我收到推送通知时,我想从另一个类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{

}       

1 个答案:

答案 0 :(得分:1)

要获得currenturl,请执行此操作

currenturl= mWebView.getUrl();

替换currenturl = "www.example.com"

currenturl.equals("www.example.com")