Search value in a EditText

20 Views Asked by At

I have a edit box in my layout and when user press the button for Send Mailto check if the value fromEdit Box contains @ and .com

layout code:
   <EditText
    android:id="@+id/editTextMessage"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:ems="10"
    android:fontFamily="serif-monospace"
    android:hint="Descriere"
    android:inputType="textMultiLine"
    android:lines="5"
    android:textAlignment="center"
    android:textColor="@color/white"
    android:textColorHighlight="@color/white"
    android:textColorHint="@color/white"
    tools:layout_editor_absoluteX="22dp"
    tools:layout_editor_absoluteY="162dp" />

        <Button
        android:id="@+id/sendBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Send"
        android:focusable="true"
        android:layout_marginStart="10dp"
        android:background="@drawable/button_style"
        android:textColor="@color/white"
        />

and java is empty I didn't try anything because I didn't know how to search the value in edit box

0

There are 0 best solutions below