私は単純なアプリ、レイアウト 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 によって提供されますか?