2017-11-18 13 views
0

私はandroid.currentlyに慣れています。私はandroid 4.0 apiでEclipseを使用しています。14.すべてadmobを統合する前にすべてをうまく統合しました。admobを統合するとエラーが表示されます。 "属性adsize "属性adUnitIdのリソース識別子が見つかりませんでした。"私のアプリケーションにAdmobを統合する

多くの類似の質問がありましたが、解決できませんでした。

私のmain.xmlファイル

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:ads="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:id="@+id/RootLayout" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 
<LinearLayout 
     android:id="@+id/adLayout" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentRight="true" 
     android:orientation="vertical" > 
    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     ads:adSize="BANNER" 
     ads:adUnitId="@string/admob_publisher_id"/> 
     </LinearLayout> 
     </RelativeLayout> 

メインactivity.java

import com.google.android.gms.ads.*; 

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

マニフェストファイル

<?xml version="1.0" encoding="utf-8"?> 
    <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.example.easywebapp" 
android:installLocation="auto" 
android:versionCode="1" 
android:versionName="1.0" > 

<uses-sdk 
    android:minSdkVersion="11" 
    android:targetSdkVersion="18" /> 

<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 


<application 
    android:allowBackup="true" 
    android:hardwareAccelerated="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" > 
    <meta-data android:name="com.google.android.gms.version" 
    android:value="@integer/google_play_services_version" /> 
    <activity 
     android:name="com.example.asd.Splashscreen" 
     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.example.asd.Image" 
     android:label="@string/title_activity_image" > 
    </activity> 
    <activity android:name="com.google.android.gms.ads.AdActivity" 
     android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" 
     android:theme="@android:style/Theme.Translucent" /> 
</application> 

答えて

0

コードをこれを追加fine.Check Googleはそのパスを確認含まれている場合、サービスライブラリが含まれているプレーのようです。

0

は、下のリンクを試してみてください refer here

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

あなたのGradleファイルに

compile 'com.google.android.gms:play-services-ads:10.2.0' 
関連する問題