在应用程序中将AdMob与导航抽屉集成

时间:2017-09-21 11:18:31

标签: android android-layout android-fragments admob

我的应用程序有一个导航抽屉,并包含片段中的一些edittext字段。 我试图通过以下xml代码在我的activity_main.xml中添加AdView。启用键盘后,AdView会浮动,保持键盘顶部。 我在Menifest上添加了windowSoftInputMode="adjustResize",甚至试过getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN); 在活动类的OnCreate()方法中,但都没有帮助。 有什么想法解决这个问题? 这是我的activity_main.xml布局。

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.neupanedinesh.farefindernepal.MainActivity">

    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/navigation_header"
        app:menu="@menu/navigation_menu"/>


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <FrameLayout
            android:id="@+id/fragment_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

        <com.google.android.gms.ads.AdView
            xmlns:ads="http://schemas.android.com/apk/res-auto"
            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="KEY">
        </com.google.android.gms.ads.AdView>

    </RelativeLayout>

</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:0)

没有一个答案对我有用,但是这个,

android:windowSoftInputMode="adjustNothing"