17 lines
561 B
XML
17 lines
561 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:paddingTop="16dp"
|
|
android:paddingBottom="12dp"
|
|
>
|
|
|
|
<EditText
|
|
android:id="@+id/edittext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxLength="50"
|
|
android:singleLine="true"/>
|
|
</LinearLayout> |