I'm developing an app that lets you (among the other opportunities) create little notes. Note consists of a title and a body. And the perfect behavior would be to have multiline title with imeOption "actionNext" on a keyboard to move to note content after finishing typing a title.
Official Google docs say, that if you use a multiline EditText, the soft input method's action button will always be a carriage return (https://developer.android.com/training/keyboard-input/style#Action).
BUT! If you'll look at the Google Keep app, you'll see that their notes implement exactly the behavior I need. What's the secret here and how can we implement such behavior in our apps?