1

When i click next it does not go all way round but it goes down?

Screenshot links below.

I have tried all types of Layouts.

image

image

ArtKorchagin
  • 4,801
  • 13
  • 42
  • 58
  • try to add android:imeOptions="actionNext" to your edit texts and if it not helps you - try something like this http://stackoverflow.com/a/17990096/2010395 – Serhii Nadolynskyi Aug 17 '15 at 17:36

2 Answers2

3

you can use the next focus attribute for Focus Handling

Focus Handling

nextFocusDown nextFocusLeft nextFocusRight nextFocusUp

check this tutorial

Lesther Vega
  • 528
  • 3
  • 14
2

Try using:

android:nextFocusDown="@+id/your_next_edittext_id"

on your EditText's.

Mulgard
  • 9,877
  • 34
  • 129
  • 232