レイアウトに2 つ以上のEditText
ビューがあり、実行時に誤って 2 つ目のビューを選択してテキストで埋めたとします。今、私は前のビューに行きたいと思っていEditText
ます。タッチすると、その中にテキストを書くことにフォーカスします。
しかし、私はこれを行うことができません。ビューのフォーカスを取得して、その特定のビューをクリックして書き込むことができません。
以下のコードを参照してください。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/wall">
<EditText
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:textSize="30dp"
android:focusable="true"
android:hint="@string/Title" />
<EditText
android:id="@+id/body"
android:layout_width="fill_parent"
android:layout_height="350dp"
android:textSize="25dp"
android:paddingTop="45dp"
android:gravity="top"
android:inputType="textMultiLine|textNoSuggestions"
android:ems="10"
android:focusable="true"
android:hint="@string/program" />
<TextView
android:id="@+id/CalDisplay"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:textSize="20dp"
android:layout_below="@+id/save" />
<Button
android:id="@+id/Calculate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/body"
android:layout_toRightOf="@+id/RunProgram"
android:background="@drawable/custom_button"
android:textColor="#ffffff"
android:text="@string/Calculate" />
<Button
android:id="@+id/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/Calculate"
android:layout_alignBottom="@+id/Calculate"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/RunProgram"
android:background="@drawable/custom_button"
android:textColor="#ffffff"
android:text="@string/Save"
/>
<Button
android:id="@+id/RunProgram"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/body"
android:layout_centerHorizontal="true"
android:background="@drawable/custom_button"
android:textColor="#ffffff"
android:text="@string/Run" />
</RelativeLayout>