2

我有一个内部类,它在我的活动中扩展 View 类。我将内容视图设置为内部类视图。我想在我的活动中添加一个 AdView。这是一个横幅..有人可以帮我实现这个吗?我是安卓新手。。

MyActivity 类扩展 Activity {

  View myView;

     OnCreate()
      {
       myView= new ViewClass(this);
       setContentView(myView);
      }


   Class ViewClass extends View
     {
       //drawing inside a canvas and other drawing activities
     }

}

现在我想在屏幕上添加一个 AdView。我怎样才能做到这一点?

提前致谢

4

1 回答 1

1

在您的 xml 中添加您的视图类,例如

让我们命名myLayout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
<package.MyActivity$ViewClass android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
<com.google.ads.AdView android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="MY_AD_UNIT_ID"
                     ads:adSize="BANNER"
                     ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
                     ads:loadAdOnCreate="true"/>

<LinearLayout/>



@Override
  onCreate()
  {
   setContentView(R.layout.myLayout);
   myView= (ViewClass)findViewById(R.id.viewClass);

  }

有关创建视图类的更多信息。

于 2013-07-29T05:52:40.540 回答