The
1.android pop-up soft keyboard masks the solution to the EditText text box:
sets the layout for the control in the Activit corresponding layout file Filename.xml file.
(for example: android:layout_weight= ")
and set the height as adaptive as possible: android:layout_height=" WRAP_ Content ",
is the sum of the compressibility of controls that do not have a height set, and if it is larger than the height of the soft keyboard, the soft keyboard that pops up will not obscure the text input box when the EditText text input is
.
2. To set the default soft keyboard hidden method:
in the Androidmanifest.xml project management file, the corresponding activity in the settings
android:windowsoftinputmode= "Adjustunspecified|statehidden"  
(
For example:
<activity android:name= "com. Lepad.mytable "android:windowsoftinputmode=" Adjustunspecified|statehidden "&NBSP;
android:screenorientation= "Portrait" ></ Activity>
)