2015-11-14 3 views
0

В моем приложении есть белая панель внизу. Я просмотрел другие вопросы, и они сказали мне, чтобы убедиться, что у меня есть все, чтобы соответствовать match_parent. Я сделал это, и ничего не получилось.Android Studio: Webview - пустое пространство внизу

Изображение: http://i.imgur.com/G3FlTij.png

Любая помощь будет оценена.

fragment_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<LinearLayout 
    android:id="@+id/container_content" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <android.support.v4.widget.SwipeRefreshLayout 
     android:id="@+id/container_swipe_refresh" 
     android:layout_width="match_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1"> 

     <WebView 
      android:id="@+id/fragment_main_webview" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:background="@color/global_bg_front" /> 

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

    <com.google.android.gms.ads.AdView 
     android:id="@+id/fragment_main_adview" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     app:adUnitId="@string/admob_unit_id" 
     app:adSize="BANNER" /> 

</LinearLayout> 

<include 
    layout="@layout/placeholder_progress" 
    android:id="@+id/container_progress" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:visibility="gone" /> 

<include 
    layout="@layout/placeholder_offline" 
    android:id="@+id/container_offline" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:visibility="gone" /> 

<include 
    layout="@layout/placeholder_empty" 
    android:id="@+id/container_empty" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:visibility="gone" /> 

activity_main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical"> 

<include layout="@layout/toolbar" /> 

<android.support.v4.widget.DrawerLayout 
    android:id="@+id/activity_main_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

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

    <ListView 
     android:id="@+id/activity_main_drawer" 
     android:layout_width="@dimen/drawer_width" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:choiceMode="singleChoice" 
     android:drawSelectorOnTop="true" 
     android:fastScrollEnabled="false" 
     android:listSelector="@drawable/selector_clickable_item_bg" 
     android:background="@color/global_bg_front" /> 

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

+0

Разве это не '' AdView'? –

ответ

0

Не этот бар из-за неправильно отображаемых объявлений в макет? Вы пытались его удалить? Если панель исчезает, это означает, что есть проблема с показом объявлений.

<com.google.android.gms.ads.AdView 
    android:id="@+id/fragment_main_adview" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center" 
    app:adUnitId="@string/admob_unit_id" 
    app:adSize="BANNER" /> 
+0

Я попробую это после его завершенной индексации! – m0nsta

+0

Это сработало! Благодаря! – m0nsta

Смежные вопросы