我有一个简单的应用程序,布局 XML:
<RelativeLayout 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" >
<WebView
android:id="@+id/webview"
android:layout_width="200dp"
android:layout_height="200dp" />
</RelativeLayout>
当我使用以下代码时:
WebView webview = (WebView)findViewById(R.id.webview);
webview.getRootView().findViewById(android.R.id.content);
webview.getRootView().findViewById(android.R.id.content); 返回 android.widget.FrameLayout。它是什么?我从未在我的应用程序中定义 FrameLayout。这是 Android 默认提供的吗?