0

我已经在我的 PreferenceActivity 中将 Admob 实现为自定义首选项。它有效,即使广告被剪掉了一点,但是当我向下和向上滚动时,广告会消失一秒钟并再次显示。是否可以将添加到屏幕底部,覆盖首选项列表?(就像在常规活动中一样)。

4

1 回答 1

0

您可以为广告创建布局,还可以根据屏幕坐标为布局设置参数,现在将此布局添加到您的主布局中。

RelativeLayout myLayout = new RelativeLayout(getContext());
    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(adWidth,adHeight);
    params.leftMargin=0;
    params.topMargin = h-adHeight;

    //adding Adview and other portion view to relative layout created
    myLayout.addView(adview,params); 
    myLayout.addView(yourotherportionview);

    setContentView(myLayout);
于 2013-09-12T18:09:29.100 回答