我正在尝试在应用程序上实施 Admob 广告。我想要做的是在自定义对话框上投放横幅广告。我已经尝试了一切,但找不到解决方案。
我为对话框制作了一个自定义 xml。在xml上添加admob时,它不会运行。所以我尝试以编程方式进行。但仍然无法使其工作。
public void OnClickButton(View paramView)
{
int btn_id = paramView.getId();
if (btn_id == R.id.hint_field)
{
//set up dialog
if (hint != null && hint.length()>0) {
final Dialog dialog = new Dialog(Activity.this);
dialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);
//ad loading
dialog.setContentView(R.layout.custom_dialog);
RelativeLayout layout = (RelativeLayout)findViewById(R.id.dialog_l);
layout.addView(ad);
AdRequest r = new AdRequest();
ad.loadAd(r);
dialog.setTitle("Σχετικά με την λέξη :");
dialog.setCancelable(true);
//set up text
TextView text = (TextView) dialog.findViewById(R.id.hint_text);
text.setText(hint);
//set up button
Button button = (Button) dialog.findViewById(R.id.Button01);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
dialog.dismiss();
}
});
// now that the dialog is set up, it's time to show it
dialog.show();
dialog.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, R.drawable.ic_launcher);
}
}
在按钮上单击我会显示一个自定义对话框。在我的 Activity 的 OnCreate 方法中,我制作了 adView
AdView ad = new AdView(this, AdSize.BANNER, "a15xxxxxxxxxxx");
我在以下位置得到 NullPointerException:layout.addView(ad);
有任何想法吗 ?
提前致谢!