activity_main.xml
<TextView
android:id="@+id/textViewProfileName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/textViewFirstRunHeader2"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="center|start"
android:text="@string/profile_name"
android:textColor="@android:color/black"
android:textSize="16sp"
android:textStyle="bold" />
MainActivity.java
textViewProfileName= (TextView) findViewById(R.id.textViewProfileName);
textViewProfileName.requestFocusFromTouch();
References
https://github.com/mhdr/AndroidSamples/tree/master/075