自定义提醒对话框中的Admob(广告)

时间:2011-10-03 10:01:02

标签: java android dialog

在市场上我看到一个应用程序正在警告对话框中显示admob。在我阅读thisthis以及this后,

我仍然无法弄清楚如何在警告对话框中显示广告,如下所示。 (或任何其他方法,可以在警告对话框中显示广告)

enter image description here

我一直在试图弄清楚如何 这样做。

有没有人能够引导我完成指导 要解决这个问题吗?

XML:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@id/tablayout" android:layout_width="fill_parent" android:layout_height="fill_parent" android:stretchColumns="*"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:myapp="http://schemas.android.com/apk/res/com.xxx.xxx">

    <TableRow>
  <com.admob.android.ads.AdView android:id="@id/myad" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  myapp:backgroundColor="#ff000000" 
  myapp:primaryTextColor="#ffffffff" 
  myapp:secondaryTextColor="#ffcccccc" />
    </TableRow>

</TableLayout>

Java:

 public void onBackPressed() {
    //set up dialog
                Dialog dialog = new Dialog(main.this);
                dialog.setContentView(R.layout.exitdialog);
                dialog.setTitle("This is my custom dialog box");
                dialog.setCancelable(true);


                //set up button
                Button button = (Button) dialog.findViewById(R.id.Button01);
                button.setOnClickListener(new OnClickListener() {
                @Override
                    public void onClick(View v) {
                        finish();
                    }
                });
                //now that the dialog is set up, it's time to show it    
                dialog.show();
            }
        });
}

感谢。

2 个答案:

答案 0 :(得分:2)

我找到了另一种方法来做到这一点。

AdMob为Android和iPhone网站/网络应用提供JavaScript集成解决方案。

而不是使用XML和自定义对话框。 我们可以使用Admob网络广告和包含admob代码的HTML,并在对话框中将其加载到webview中。

答案 1 :(得分:0)

我相信除非你处于横向模式,否则这是不可能的。原因是广告需要与广告的设备宽度(纵向模式,例如480)相近的内容,因此只有在对话框中添加广告时才能以横向模式使用