A EditText is used to enter data from user.
Usage : username, password, phone number etc
Example of EditText
<EditText
android:id="@+id/txtDisplayMobile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Mobile No"
android:inputType="phone"
android:singleLine="true"
android:textSize="14sp"
android:textStyle="bold"/>
Post a Comment