make scroll to top/bottom work in the log view when the EditText is not focused

This commit is contained in:
adbenitez
2021-06-23 00:37:37 -04:00
parent 9b4eae45fd
commit 48e768bc04
@@ -98,9 +98,15 @@ public class LogViewFragment extends Fragment {
logPreview.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
}
public void scrollDownLog() { logPreview.setSelection(logPreview.getText().length()); }
public void scrollDownLog() {
logPreview.requestFocus();
logPreview.setSelection(logPreview.getText().length());
}
public void scrollUpLog() { logPreview.setSelection(0); }
public void scrollUpLog() {
logPreview.requestFocus();
logPreview.setSelection(0);
}
public boolean saveLogFile() {