Android如何使用WebTextView覆盖Webview中的TextFields
我想使用 WebTextView 覆盖 Webview 中的文本字段,以便我可以保存它们的状态并在方向更改后恢复它们。
我想在方向更改后保留 WebView 中的文本数据。
我找不到与 WebTextView 相关的示例。谁能给我举个例子来实现上述目标?
提前致谢 !!
I want to use WebTextView to overlay text fields in Webview so that I can save their state and restore them after orientation change.
I want to retain the text data in WebView after orientation change.
I could not find examples related to the WebTextView . Can anyone point me with an example to achieve the above ?
Thanks in advance !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需将
android:configChanges="orientation|keyboardHidden"
作为属性添加到 manifest.xml 内的
标记即可you can simply add
android:configChanges="orientation|keyboardHidden"
as an attribute to the<activity>
tag inside the manifest.xmlAndroid SDK 中没有 WebTextView,这就是为什么你找不到任何示例。
There is no WebTextView in Android SDK, thats why you can't find any examples.