目的
アプリを開いたときや、特定のページに遷移した時に画面内のEditTextにフォーカスを当ててキーボードを表示させておく方法
内容
ここでXMLファイルのEditTextのタグを拡張してrequestFocus
タグを内部に追加します
activity_second.xml
<EditText
android:id="@+id/editText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="ここに入力してね"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
<requestFocus/>
</EditText>
こうすることで読み込み時にフォーカスをEditTextに当てることができます