我已经开始研究一个新的应用程序,我决定通过v13支持包使用Fragment
s启动这个应用程序,这样我就可以构建一个同时支持手机和手机的应用程序。平板电脑设计。
如果我在XML文件中创建广告,我可以在片段中使用我的AdMob广告,但是,如果我尝试通过代码创建它们,我会遇到问题。
public class Fragment_Admob extends Fragment implements AdListener
{
private static final String LOG_TAG = "Fragment_Admob";
private AdView adView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
// Inflate the layout for this fragment
return inflater.inflate(R.layout.admob_view, container, false);
// Create an ad.
adView = new AdView(this, AdSize.BANNER, "My_AdMob_Code");
...
}
...
}
Eclipse告诉我:
构造函数AdView(Fragment_Admob,AdSize,String)未定义
所以我觉得好,因为AdView期望一个Activity而不是Fragment。所以我尝试使类扩展FragmentActivity而不是Fragment,并解决了这个特定问题。但是现在我在运行时遇到了片段扩展问题,我之前已经解决了,但是我无法在这里解决,因为我真的不认为我应该在非活动代码集中使用FragmentActivity。
答案 0 :(得分:4)
我意识到我试图将广告放入片段中是错误的。我改为使我的类扩展FragmentActivity,然后使我的布局成为一个RelativeLayout,并在底部注入一个新的RelativeLayout,并使其具有正确的重力以使其粘住。然后片段驻留在RelativeLayout内部并相应地调整大小。
public class MyClass extends FragmentActivity implements AdListener
{
// Create an ad.
adView = new AdView(this, AdSize.SMART_BANNER, "MY_ID");
// Set the AdListener.
adView.setAdListener(this);
// Add the AdView to the view hierarchy. The view will have no size until the ad is loaded.
RelativeLayout layout = (RelativeLayout) findViewById(R.id.home_layout);
RelativeLayout.LayoutParams adsParams =new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
adsParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
layout.addView(adView,adsParams);
AdRequest adRequest = new AdRequest();
adRequest.addTestDevice(AdRequest.TEST_EMULATOR);
// Start loading the ad in the background.
adView.loadAd(adRequest);
}