Multiline Textbox with automatic vertical scroll

According to this question: TextBox.ScrollToEnd doesn’t work when the TextBox is in a non-active tab You have to focus the text box, update the caret position and then scroll to end: Status.Focus(); Status.CaretIndex = Status.Text.Length; Status.ScrollToEnd(); EDIT Example TextBox: <TextBox TextWrapping=”Wrap” VerticalScrollBarVisibility=”Auto” AcceptsReturn=”True” Name=”textBox”/>

Stop ScrollView from auto-scrolling to an EditText

After struggling with that problem for quite some time, I’ve found a solution that seems to work without being too ugly. First, make sure that whatever ViewGroup (directly) contains your EditText has descendantFocusability set to “Before Descendants,” focusable set to “true” and focusableInTouchMode set to “true.” This will not be the ScrollView itself, but the … Read more