我正在为视频游戏网站开发一个Android应用程序,我需要制作一个标签式布局。在每个标签中都必须有一个webview,因为我必须加载一些我创建的php
页。{/ p>
第一个标签具有以这种方式格式化的webview:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.leaderboardmk8.MainActivity" >
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
它看起来像this。第二个选项卡具有以下XML代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.leaderboardmk8.MainActivity" >
<WebView
android:id="@+id/webview2"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
由于某些原因,此webview2
看起来像this:正如您所看到的那样,只有顶部的WebView组件的一小部分。我不知道问题出在哪里,因为我输入了:
android:layout_width="match_parent"
android:layout_height="match_parent"
你有什么建议吗?