0

レイアウトに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>   
4

2 に答える 2

0

に置き換えRelativeLayoutますLinearLayoutEditText互いに重なり合っているように見えるため(フォーカスを取得する際に問題が発生する)、または少なくともそれぞれの位置合わせを追加します。

たとえば、次を 2 番目の に追加しますEditText

android:layout_below="@id/title"
于 2013-04-04T10:34:44.320 に答える
0
Try this...

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <EditText
        android:id="@+id/title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:hint="Title"
        android:textSize="15dp" />

    <EditText
        android:id="@+id/body"
        android:layout_width="fill_parent"
        android:layout_height="350dp"
        android:layout_below="@+id/title"
        android:layout_marginTop="5dp"
        android:gravity="left"
        android:hint="program"
        android:inputType="textMultiLine|textNoSuggestions"
        android:textSize="15dp" />

    <TextView
        android:id="@+id/CalDisplay"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/save"
        android:textSize="20dp" />

    <LinearLayout
        android:id="@+id/linearButtons"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/body" >

        <Button
            android:id="@+id/Calculate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Calculate"
            android:textColor="#ffffff" />

        <Button
            android:id="@+id/save"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Save"
            android:textColor="#ffffff" />

        <Button
            android:id="@+id/RunProgram"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Run"
            android:textColor="#ffffff" />
    </LinearLayout>

    </RelativeLayout>
于 2013-04-04T10:50:26.563 に答える