¡@

Home 

2014/10/16 ¤W¤È 08:23:42

android Programming Glossary: setembeddedtitlebar

Webview in Scrollview

http://stackoverflow.com/questions/9718245/webview-in-scrollview

Controls above the web content and you are OK to support only Android 2 and above then you can use the hidden internal setEmbeddedTitleBar method of the WebView . It has been introduced in API level 5 and accidentally became public for exactly one release I think.. class WebViewWithTitle extends ExtendedWebView private static final String LOG_TAG WebViewWithTitle private Method setEmbeddedTitleBarMethod null public WebViewWithTitle Context context super context init public WebViewWithTitle Context context AttributeSet.. context init public WebViewWithTitle Context context AttributeSet attrs super context attrs init private void init try setEmbeddedTitleBarMethod WebView.class.getMethod setEmbeddedTitleBar View.class catch Exception ex Log.e LOG_TAG could not find setEmbeddedTitleBar..