Фокус запроса - только для представлений, а не для примитивных типов данных. Чтобы Textview оставался в фокусе, используя XML или программно,
// Parent view
LinearLayout ll = …
final int childCount = ll.getChildCount();
for (int i = 0; i < childCount; i++) {
View v = ll.getChildAt(i);
// Check is v is instanceof TextView.
}
XML-атрибуты,
// Based on the requirement
android:focusable="true"
android:focusableInTouchMode = "true"
Программно,
TextView text = view.findViewById(R.id.textView);
text.requestFocus();