I have 2 fragments in the stack, both of them contain EditTexts. (The red EditTexts is from the bottom fragment)
When I click the soft keyboard 'next' button, the cursor should move to the 2nd edit text, but instead, it's jump to the bottom fragment EditText.
If I use 'fragmentManager.replace(new TopFragment())',so there is only 1 fragment in the stack, there is no problem, and cursor move to the 2nd EditText.
'fragmentManager.replace(...)' is not a solution, I have a callback for the bottom fragment.