【发布时间】:2018-05-16 06:26:50
【问题描述】:
当有人在 webView 中下载我的应用程序的图像时,我想显示插页式广告,现在当用户下载图像时弹出显示该图像已完全下载好,我想在用户单击该确定按钮时显示插页式广告,这是我的弹出代码
registerReceiver(downloadListener, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
BroadcastReceiver downloadListener = new BroadcastReceiver(){
public void onReceive(Context ct, Intent intent){
new MaterialDialog.Builder(this)
.title("Download Completed")
.content("Download Successfully Completed")
.positiveText("OK")
.show();
}
谢谢
【问题讨论】:
-
您是否注册并在单击确定按钮时发送广播??
-
没有怎么办? @HemantParmar
-
我把答案贴出来,看看。
标签: android webview admob interstitial