Issue
I have this web view on which I have a text box at the bottom. The problem is when I click on this text box the keypad pops up and covers it. How can I scroll the web view so that the text box remain above the keypad. In i phone it is handled automatically.
Solution
Finally i came out from this stuck..
I just added android:windowSoftInputMode="adjustResize"
in my maniefest file inside wab activity declaration class.
And Added below in style.xml file:
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowFullscreen">false</item>
<item name="android:windowNoTitle">true</item>
</style>
Answered By - DKHirani
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.