1.매니페스트에 밑줄 굵은부분 추가

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".AdmobActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity" 
android:configChanges="keyboard|keyboardHidden|orientation"/> 
</application>
<uses-permission android:name="android.permission.INTERNET"/> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 
</manifest>

 

2. 액티비티의 onCreate에서  아래 와 같이 사용




  AdView adView // (전역변수로 생성)
  String 변수 이름 = admon에서 받은 게시자 ID 입력
 
 adView= new AdView(this, AdSize.BANNER, 게시자 ID);
 LinearLayout layout = xml 의 레이아웃과 연결 (또는 자신이 생성한 layout)
 
layout.add(adView)
 
adView.loadAd(new AdRequest());

 



 

3. 아래와 같이 꼭 적어 줘야 뒤에서 자동 갱신이 안됨



  public void onDestroy(){
     adView.destroy();
     super.onDestroy();
  }




Posted by 후미카
:

카테고리

전체보기 (102)
Development (102)

최근에 올라온 글

최근에 달린 댓글

최근에 받은 트랙백

달력

«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28

글 보관함