Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.43 KB | None | 0 0
  1. <LinearLayout
  2.            android:layout_width="match_parent"
  3.            android:layout_height="wrap_content"
  4.            android:orientation="vertical"
  5.            android:paddingLeft="10dp"
  6.            android:paddingRight="10dp">
  7.  
  8.             <LinearLayout
  9.                android:layout_width="match_parent"
  10.                android:layout_height="wrap_content"
  11.                android:orientation="horizontal">
  12.  
  13.                 <TextView
  14.                    android:layout_width="171dp"
  15.                    android:layout_height="wrap_content"
  16.                    android:text="@string/nama"
  17.                    android:textColor="#000"
  18.                    android:textSize="15sp" />
  19.  
  20.                 <TextView
  21.                    android:layout_width="4dp"
  22.                    android:layout_height="wrap_content"
  23.                    android:text="@string/sama_dengan"
  24.                    android:textColor="#000"
  25.                    android:textSize="15sp" />
  26.  
  27.                 <com.rengwuxian.materialedittext.MaterialEditText
  28.                    android:id="@+id/nama"
  29.                    android:layout_width="match_parent"
  30.                    android:layout_height="wrap_content"
  31.                    android:hint="@string/muhammad_tofik"
  32.                    android:inputType="textPersonName"
  33.                    android:textSize="16sp"
  34.                    app:met_floatingLabel="highlight" />
  35.             </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement