Я хочу, чтобы мой EditText фокусировался при касании (щелчке) его родного или родительского элемента.
Возможно ли это сделать с помощью XML или программно?
Я уже пытался установитьследующие атрибуты контейнера (LinearLayout) и одноуровневого элемента (AppCompatTextView)
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:gravity="left" />
<androidx.appcompat.widget.AppCompatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:inputType="textCapSentences" />
</LinearLayout>