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);