How to move up the widget when keyboard open in when i touch the edit box in full screen mode .
I have use below code but it didn't work so please help me, i m totally stuck.
android:windowSoftInputMode="adjustResize"
I have use this code and set in manifest but it not work
Thanks in advance
Asked
Active
Viewed 544 times
1

Ashutosh Bansal
- 397
- 1
- 6
- 17
-
maybe this post will help: http://stackoverflow.com/questions/6262265/how-to-set-size-and-layout-in-onsizechanged – Nikola Davidovic Oct 09 '12 at 13:27
-
1try android:windowSoftInputMode="adjustPan" – Yogesh Somani Oct 09 '12 at 13:36
1 Answers
1
Try giving:
android:windowSoftInputMode="adjustPan"
in your manifest.

Yogesh Somani
- 2,624
- 3
- 21
- 34
-
well, I always give this for almost every activity of my projects and it works. – Yogesh Somani Oct 09 '12 at 13:45
-