Merge pull request #268 from connyduck/textinputedittext

use TextInputEditText instead of EditText inside TextInputLayout
This commit is contained in:
Vavassor 2017-05-07 17:44:42 -04:00 committed by GitHub
commit c3f4473508
2 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="30dp"> android:layout_marginTop="30dp">
<EditText <android.support.design.widget.TextInputEditText
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:id="@+id/edit_profile_display_name" android:id="@+id/edit_profile_display_name"
@ -103,7 +103,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="30dp"> android:layout_marginTop="30dp">
<EditText <android.support.design.widget.TextInputEditText
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:id="@+id/edit_profile_note" android:id="@+id/edit_profile_note"

View File

@ -23,7 +23,7 @@
<android.support.design.widget.TextInputLayout <android.support.design.widget.TextInputLayout
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="250dp"> android:layout_width="250dp">
<EditText <android.support.design.widget.TextInputEditText
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:inputType="textUri" android:inputType="textUri"