2016-12-19 57 views
0

你好當我嘗試加載我的應用程序(web視圖與AD瀏覽)了,我看到一個白色的屏幕什麼都沒有發生這種情況時,我試圖讓AD瀏覽工作的Android工作室白屏了

MainActivity.xml 
<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout     
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
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:fitsSystemWindows="true" 
tools:context="danilkp1234.com.pokemondamagecalculator.MainActivity"> 
<include layout="@layout/content_main" /> 
<com.google.android.gms.ads.AdView 
android:id="@+id/adView" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_alignParentTop="false" 
android:layout_centerHorizontal="true" 
android:layout_alignParentBottom="true" 
ads:adSize="BANNER" 
ads:adUnitId="@string/banner_ad_unit_id"> 

</com.google.android.gms.ads.AdView> 


<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_above="@id/adView" 
    android:layout_alignParentTop="true" 
    android:orientation="vertical"> 

    <WebView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:id="@+id/webview"> 
    </WebView> 
</LinearLayout> 



</android.support.design.widget.CoordinatorLayout> 

請幫助我,如果你需要更多的信息eks build.gradle

+0

請,[考慮尋找如何加載廣告(https://firebase.google.com/docs/admob/android/quick-start) –

回答

0

由於你已經寫了webview代碼在底部的高度和寬度作爲match_parent,它將佔用整個屏幕。可以在垂直方向上使用LinearLayout中的weight參數,也可以使用RelativeLayout和對齊規則。 試試這個,下面XML

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:ads="http://schemas.android.com/apk/res-auto" 
    xmlns:app="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:fitsSystemWindows="true" 
    android:orientation="vertical" 
    tools:context="danilkp1234.com.pokemondamagecalculator.MainActivity"> 

    <include 
     layout="@layout/content_main" 
     android:layout_width="match_parent" 
     android:layout_height="50dp" /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_above="@id/adView" 
     android:layout_weight="1" 
     android:orientation="vertical"> 

     <WebView 
      android:id="@+id/webview" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"></WebView> 
    </LinearLayout> 

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

    </com.google.android.gms.ads.AdView> 
</LinearLayout> 
+0

取代你的代碼,我得到這個錯誤錯誤:(20,31)找不到與給定名稱相匹配的資源(在'layout_above'處,值爲'@ id/adView')。 錯誤:執行任務':app:processDebugResources'失敗。 > com.android.ide.common.process.ProcessException:無法執行aapt 錯誤:(20,31)找不到與給定名稱相匹配的資源(位於'layout_above',值爲'@ id/adView')。 C:\ Users \ danie \ AndroidStudioProjects \ PokemonDamageCalculator \ app \ build \ intermediates \ res \ merged \ debug \ layout \ activity_main.xml C:\ Users \ danie \ AndroidStudioProjects \ PokemonDamageCalculator \ app \ src \ main \ res \ layout \ activity_main.xml中 – danilkp1234