我正在創建一個應用程序。這是部隊儘快結束,因爲我嘗試去到包含當我嘗試將廣告放入它時,應用程序強制關閉
<com.google.android.gms.ads.adview
.......
/>
我已經安裝了谷歌從SDK管理髮揮服務,並添加了谷歌播放services.jar文件到我的構建路徑的活動。注意。我使用的是Eclipse而不是android Studio。
我的Manifest.xml。我宣佈INTERNET權限標籤: -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.additiontables"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Addition_Tables"
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=".About_Me"
android:label="@string/title_activity_about__me" >
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="6111000" />
<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>
這裏是我的Activity.xml文件: - 我不知道我是否有運用com.google.android.gms.ads.AdView或只是com.google.ads.AdView.-
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.additiontables.About_Me" >
<com.google.android.gms.ads.AdView
xmlns:googleads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
googleads:adSize="BANNER"
googleads:adUnitId="(My Id)" />
我很懊惱。:(
請幫助。
感謝提前:)
注意。我在Refrenced庫中有googleplayservices.jar。在你的Activity類
AdView adView = (AdView) this.findViewById(R.id.ad);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
使用播放存儲庫文件 – 2014-11-24 04:37:42
粘貼您的logcat錯誤? – Dev 2014-11-24 04:38:01
請提供您的logcat錯誤> – Bhadresh 2014-11-24 04:47:05