본문 바로가기
안드로이드+자바

애드몹 배너광고 다는법 누구나 따라하기!

by 문자메일 2016. 12. 20.
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.zerobin.www.koreannamegenerator"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.google.android.gms:play-services-ads:8.4.0'
testCompile 'junit:junit:4.12'
}

build.gradle(Module:app)에서 밑줄친 코드 넣고 sync project눌러야 합니다.

 


 


<메니페스트 파일>

 


메니페스트에서 빨간색으로 표시한 부분 위치에 맞게 집어넣으시면 됩니다.


<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<pre style="font-family: 굴림체; font-size: 9pt;"><activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" /></pre><pre style="font-family: 굴림체; font-size: 9pt;"><uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /></pre><pre style="font-family: 굴림체; font-size: 9pt;">복사해서 쓰세요~</pre>









<XML 파일>

 



레이아웃이랑 배너view 위치 잘 맞게 복붙하시면 됩니다~

xmlns:ads="http://schemas.android.com/apk/res-auto"

<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>





<string>


<string name="banner_ad_unit_id">ca-app-pub-5310842808444287/3176422052</string>
여기서 주의할것 : ca-app-pub-5310842808444287/3176422052 이 부분은 자신의 만든 배너광고의
광고단위를 집어넣으셔야 합니다!!








<java>


 

 

 

 

 

광고를 넣을 java 파일의 onCreate()안에 복붙하시면 됩니다~

AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);





댓글