dingpong의 블로그

여행, 호텔, 항공, 게임, IT

[안드로이드] 웹뷰에 타이틀바 붙이기

[안드로이드] 웹뷰에 타이틀바 붙이기

안드로이드 웹뷰에 타이틀바 형식으로 특정한 View 를 추가하고자 할 때 WebView 의 setEmbeddedTitleBar 라는 함수를 사용할 수 있습니다. 다만 이 함수는 직접적으로 사용할 수 없기 때문에 아래와 같이 사용해야 합니다. [important]         public void setEmbeddedTitleBar(WebView webView, View titlebar) {                try {                        Method method = WebView.class.getMethod(“setEmbeddedTitleBar”, new Class[] {View.class});                        method.invoke(webView, titlebar);더 보기[안드로이드] 웹뷰에 타이틀바 붙이기[…]