我想在有人在webView中下载我的应用图片时显示插页式广告,现在当用户下载弹出的图片显示该图片已完全下载时,我想在用户点击该广告时显示插页式广告按钮,这是我的弹出代码
myList
感谢
答案 0 :(得分:2)
首先实现这样的正按钮点击监听器,然后你可以在该监听器中编写广告代码
new MaterialDialog.Builder(this)
.onPositive(new MaterialDialog.SingleButtonCallback() {
@Override
public void onClick(MaterialDialog dialog, DialogAction which) {
// here you can write the code for showing ads
}
})
答案 1 :(得分:0)
注册您想要回拨的本地广播接收器,看看
@Override
protected void onResume() {
super.onResume();
LocalBroadcastManager.getInstance(this).registerReceiver(downloadListener, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
}
现在在ok按钮广播接收器上
Intent intent = new Intent();
intent.setAction(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
LocalBroadcastManager.getInstance(context).sendBroadcast(intent);
希望它能帮到你!!