Package com.my.target.ads
Interface MyTargetView.MyTargetViewRenderCrashListener
-
- All Implemented Interfaces:
public interface MyTargetView.MyTargetViewRenderCrashListener
-
-
Method Summary
Modifier and Type Method Description abstract voidonViewRenderCrash(@NonNull() MyTargetView myTargetView)Calls if view render was crashed, current MyTargetView no more available from this point and should be removed from view tree. -
-
Method Detail
-
onViewRenderCrash
abstract void onViewRenderCrash(@NonNull() MyTargetView myTargetView)
Calls if view render was crashed, current MyTargetView no more available from this point and should be removed from view tree. You can try to re-create MyTargetView and check your system health
More info: https://developer.android.com/reference/android/webkit/WebViewClient#onRenderProcessGone(android.webkit.WebView,%20android.webkit.RenderProcessGoneDetail)
- Parameters:
myTargetView- current view which should be removed
-
-
-
-