5
WebViewを拡張するクラス(MyCustomWebView)があります。このようなことができますか?AndroidでカスタムWebviewを作成するには?
<MyCustomWebView
android:id="@+id/myCustomWebView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
もしそうでなければ、私はこのようなことをすることができます。
WebView webView = (WebView) findViewById(R.id.webview);
webView = new MyCustomWebView(this);