开发者

Android: Put EditText on top of WebView

开发者 https://www.devze.com 2023-02-12 00:51 出处:网络
I have been trying to mimic the behavior of the android browser with the scrolling of the address bar on top of t开发者_如何转开发he WebView. If you notice, if the user scrolls down, the address bar \

I have been trying to mimic the behavior of the android browser with the scrolling of the address bar on top of t开发者_如何转开发he WebView. If you notice, if the user scrolls down, the address bar "moves" up with the WebView (but the WebView doesn't scroll). Only when the address bar disappears completely the WebView starts to scroll. At first I tried to override the onScrollChanged method of WebView, and got something but it wasn't as smooth as the desired goal. I noticed in the docs that WebView inherits from AbsoluteLayout, so I was wondering if it's possible to add a View programmatically on top the "browser" in the WebView and by that achieve the desired scrolling effect?


EDIT

Ok so after poking around in the source code of the native browser app, I found out that there is an hidden method for that called setEmbeddedTitleBar(View v)

And here is the description (from the Android source):

 /**Add or remove a title bar to be embedded into the WebView, and scroll
 * along with it vertically, while remaining in view horizontally. Pass
 * null to remove the title bar from the WebView, and return to drawing
 * the WebView normally without translating to account for the title bar.
 * @hide*/

Do you know how I can hack my way to use this ?


You could probably still use reflection to access it. See:

  • Using Reflection for Backward Compatibility for Android (Android Developers)
  • Calling a Method Using Reflection (StackOverflow)


As far as I can see this method is public. So you can use it I think.

I've just looked through its implementation. It just calls addView() method of WebView object. So if you don't want to use hidden method you can reimplement this method.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号