EditText中でエンターキーで次のEditTextに遷移する方法

EditView::setSingleLine(:boolean)で遷移するようになる!
でもxmlでpassword=trueにしたのに普通に見えるようになったぞ
困った、困った。

ならsingleLineもxmlで指定すればいいじゃんと気づいた。

<EditText
  android:id="@+id/txtPassword"
  android:password="true"
  android:singleLine="true"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content" />

無事解決