You can set your Editext to have the focus attribute disabled, now this can apply in two ways:
The focusable attribute is true by default if that Editext is at the top of the view stack in that activity, for example, a header, it would be focusable upon activity launch.
To Disable Focusable, you can simply set its boolean value to false.
So that would be:
android:focusable="false"
To Disable it FocusableInTouchMode, you can simply set its boolean value to false.
So that would be:
android:focusable="false"
You just locate the Textview you want to apply changes to and add the respective pieces of code to their xml specifications in the XML file.
Alternatively, You can click on the Textview inside the layout editor and locate the sidebar displaying all xml attributes for that Textview, then simply scroll down to where "Focusable" and "FocusableInTouchMode" are declared and check them to be either true or false.