Android 我可以在代码或布局中做些什么来提高AdMob RPM?

Android 我可以在代码或布局中做些什么来提高AdMob RPM?,android,admob,google-admob,Android,Admob,Google Admob,我在Google Play上有两个应用程序使用AdMob货币化。一个是,另一个是 这两种应用程序每天都有大约5000次相似的印象。但Kmap解算器第一个链接的性能较低,转速约为0.1美元。第二个链路的元件引脚转速为0.35美元至0.5美元,通常更赚钱 我将发布我的布局和代码作为参考: KMAP应用程序布局: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="

我在Google Play上有两个应用程序使用AdMob货币化。一个是,另一个是

这两种应用程序每天都有大约5000次相似的印象。但Kmap解算器第一个链接的性能较低,转速约为0.1美元。第二个链路的元件引脚转速为0.35美元至0.5美元,通常更赚钱

我将发布我的布局和代码作为参考:

KMAP应用程序布局:

<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>
我的问题是:我的布局或代码中是否有任何东西可以提高布局中的应用程序RPM。这两个应用程序在布局底部都有AdView,并带有SMART_横幅设置

是否确实需要设置位置权限,以便AdView对象可以选择更好的本地广告?

admob的一般情况:

我只是展示了一个间隙广告/会话=低数量的 印象,高转速。我还可以向我的用户发送广告=高 印模数,低转速。最后你会得到同样的结果 但第一种方法可能不那么让用户恼火

我想是因为这个

发件人:

<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>
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);