showing only part of the screen when the android keyboard is active

0

I have the following screen in android

and would like that when the user clicks on one of the editText, only the 3 fields (name, birth date and phone) are shown at the top of the screen (above the keyboard). These components are separated on the screen by a LinearLayout with id itself. Is there any way to do this without having to create another activity over it?

    
asked by anonymous 22.05.2018 / 21:48

1 answer

0

I usually encapsulate a ScrollView and a LinearLayout . I do not know how it's in your code.

<ScrollView>
     <LinearLayout>
         //Seu código aqui
     </LinearLayout>
</ScrollView>
    
05.07.2018 / 16:26