I have a RecyclerView that contains EditText(s). The default (from what I can tell) Action Button (android:imeOptions) is either actionNext (when there are 1 or more items after the focused EditText) or actionDone (when the last EditText is focused). One of the controls in each row of my RecyclerView is a Button that adds another row (which obviously includes an EditText) after the current one. However, if the user clicks this Button while the keyboard is open, the Action Button does not get updated until the currently focused EditText loses & regains focus. How can I force the Action Button to be updated appropriately (sort of like closing & reopening the keyboard)?
