2017-06-15 57 views
0

我在使用AdMob獲利的Google Play上有兩個應用程序。一個是https://play.google.com/store/apps/details?id=karnagh.ammsoft.karnagh,另一個是https://play.google.com/store/apps/details?id=componentspinout.ammsoft.componentspinout我可以在代碼或佈局中做些什麼來改進AdMob RPM?

這兩個應用程序的展示次數都相似(每天大約5000次)。但是Kmap Solver(第一個鏈接)以大約0.1 RPM的速度執行。組件引腳(第二個鏈接)的RPM爲0.35到0.5美元,通常更有利可圖。

我張貼我的兩個佈局和代碼作爲參考:

KMAP APP佈局:

<LinearLayout 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:layout_width="match_parent" 

    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <karnagh.ammsoft.karnagh.PageViewImage 
     android:id="@+id/pageIndicator" 
     android:layout_width="10dp" 
     android:layout_height="10dp" 
     android:layout_gravity="center_horizontal" 
     android:layout_marginTop="10dp" 
     android:adjustViewBounds="true" /> 

    <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:id="@+id/pager" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="5dp" 
     android:layout_weight="0.26" 
     android:fadeScrollbars="true" 
     tools:context=".MainActivity" /> 

    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="10dp" 
     android:clipToPadding="false" 
     ads:adSize="SMART_BANNER" 
     ads:adUnitId="@string/banner_ad_unit_id"></com.google.android.gms.ads.AdView> 

</LinearLayout> 

COMPONENT引腳配置APP:

<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/activity_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="5dp" 
    android:paddingTop="5dp" 
    tools:context="componentspinout.ammsoft.componentspinout.MainActivity"> 

    <ListView 
     android:id="@+id/componentsView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_above="@+id/adView" 
     android:paddingBottom="5dp" 
     android:paddingLeft="10dp" 
     android:paddingRight="10dp" 
     android:paddingTop="5dp" 
     android:visibility="visible" /> 

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

</RelativeLayout> 

開始廣告代碼是同一位於OnCreate of Activity:

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

我的問題是:我的佈局或代碼中是否有任何改進佈局中APP RPM的內容。兩個應用程序都在具有SMART_BANNER設置的佈局的底部具有AdView。

這是真的,我需要設置位置權限,以便AdView對象可以選擇更好的本地AD?

回答

相關問題