I have a EditText in my app. my problem is that the the virtual keyboard masks my EditText while typing. I have tried using different stuffs..
<activity android:name="Myactivity" android:screenOrientation="portrait"
android:configChanges="keyboardHidden|orientation"
android:windowSoftInputMode="stateVisible|adjustResize"></activity>
but this problem still exists…do any one have any idea how I can make the EditText go up as I type…?
Happy coding…!
Just try to do in the Android Manifest file:
Also you need to add following code in the activity’s OnCreate function:
I hope this should work for you.