I have an activity with EditText
to enter values. Whenever the keyboard appears, the editText
is no longer visible (the keyboard hides EditText
).
I tried to put in Manifest
in the referring activity the following command:
android:windowSoftInputMode="adjustPan|adjustResize"
However the keyboard when it appears continues to hide EditText
and I can not see what is being written. The EditText
is this:
<EditText android:id="@+id/EditTextMeta1"
android:layout_height="70dp"
android:background="@drawable/edit_text_plafond2"
android:textSize="14dp"
android:paddingTop="30dp"
android:inputType="number"
android:layout_width="60dp"
android:gravity="right"
android:maxLength="4"/>
Can anyone help?