Advertisement
Guest User

Untitled

a guest
Jun 13th, 2015
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.79 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    android:layout_width="fill_parent"
  5.    android:layout_height="fill_parent"
  6.    android:orientation="vertical">
  7.  
  8.     <com.rengwuxian.materialedittext.MaterialEditText
  9.        android:id="@+id/fragment_children_specification_add_child_dialog_et_name"
  10.        fontPath="fonts/OpenSans-Regular.ttf"
  11.        android:layout_width="fill_parent"
  12.        android:layout_height="wrap_content"
  13.        android:layout_marginTop="10dp"
  14.        android:hint="@string/display_children_specification_add_child_name"
  15.        app:met_floatingLabel="highlight" />
  16.  
  17.     <com.rengwuxian.materialedittext.MaterialEditText
  18.        android:id="@+id/fragment_children_specification_add_child_dialog_et_birth_date"
  19.        fontPath="fonts/OpenSans-Regular.ttf"
  20.        android:layout_width="fill_parent"
  21.        android:layout_height="wrap_content"
  22.        android:layout_marginTop="10dp"
  23.        android:focusableInTouchMode="false"
  24.        android:hint="@string/display_finalize_birth_date"
  25.        app:met_floatingLabel="highlight" />
  26.  
  27.     <com.rengwuxian.materialedittext.MaterialEditText
  28.        android:id="@+id/fragment_children_specification_add_child_dialog_et_extra_information"
  29.        fontPath="fonts/OpenSans-Regular.ttf"
  30.        android:layout_width="fill_parent"
  31.        android:layout_height="wrap_content"
  32.        android:layout_marginTop="10dp"
  33.        android:hint="@string/display_children_specification_add_child_extra_info_optional"
  34.        app:met_floatingLabel="highlight"
  35.        app:met_floatingLabelText="@string/display_children_specification_add_child_extra_info"
  36.        app:met_maxCharacters="100" />
  37.  
  38. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement