Created
September 24, 2018 03:42
-
-
Save malikkurosaki/f5b0e8027d9bbfa93b50c73f0f5c3f56 to your computer and use it in GitHub Desktop.
ignore edit text covered by keyboard android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest ...> | |
<application ...> | |
<activity | |
android:name=".TestInputActivity" | |
android:label="@string/title_activity_test_input" | |
android:windowSoftInputMode="adjustResize" | |
android:theme="@style/AppTheme.NoActionBar"> | |
</activity> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment