diff options
author | Christian Schneppe <christian@pix-art.de> | 2018-04-22 21:39:19 +0200 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2018-04-22 21:39:19 +0200 |
commit | ad839a1ddaea72f766be80266ae5b6d4fa7cae7f (patch) | |
tree | 9e11f0d427f83a595f866200ffaa6dff62523172 /src/main/res/layout/create_conference_dialog.xml | |
parent | bcc69353e16dac911de23505b1c37bea2d3bdb80 (diff) |
made all text styleable
Diffstat (limited to 'src/main/res/layout/create_conference_dialog.xml')
-rw-r--r-- | src/main/res/layout/create_conference_dialog.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/res/layout/create_conference_dialog.xml b/src/main/res/layout/create_conference_dialog.xml index 36dfae0fe..2cb78b165 100644 --- a/src/main/res/layout/create_conference_dialog.xml +++ b/src/main/res/layout/create_conference_dialog.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<layout xmlns:android="http://schemas.android.com/apk/res/android"> +<layout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> <LinearLayout android:layout_width="match_parent" @@ -32,10 +33,13 @@ <android.support.design.widget.TextInputLayout android:layout_width="match_parent" - android:layout_height="wrap_content"> + android:layout_height="wrap_content" + app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error" + app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint"> <android.support.design.widget.TextInputEditText android:id="@+id/subject" + style="@style/Widget.Conversations.EditText" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/edit_subject_hint" |