我有一个使用Webview来显示我的网站的Android应用。 问题是,在设备上进行测试时,确实看起来不一样
这是我的应用程序的布局代码
<?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:tools="http://schemas.android.com/tools"
tools:context=".MainActivity"
android:background="@color/main"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:weightSum="5">
<ProgressBar
android:id="@+id/edhubprogress"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="match_parent"
android:layout_height="0.10dp"
android:layout_gravity="center_horizontal|center_vertical"
android:layout_weight="0.080"
android:background="@color/progress"
android:foreground="@android:color/holo_blue_dark"
android:visibility="visible" />
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"></WebView>
<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_gravity="center_horizontal|center_vertical"
android:layout_weight="0"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-8725889950390155~8665284580" />
</LinearLayout>
这是我的预览屏幕截图
但是,当我在设备上对其进行测试时,包含AdView的白色部分并未显示。 Webview涵盖了该部分。
我仍然清理并重建了项目。
任何帮助将不胜感激。