mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-02-11 17:30:41 +01:00
remove EventActivity TextInputLayout, as it cannot be customized
This commit is contained in:
parent
1982af9a52
commit
30d21224cd
@ -11,16 +11,18 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="@dimen/activity_margin">
|
||||
|
||||
<android.support.design.widget.TextInputLayout
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/event_title_label"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/title"
|
||||
android:textSize="@dimen/day_text_size"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyEditText
|
||||
android:id="@+id/event_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/title"
|
||||
android:layout_below="@id/event_title_label"
|
||||
android:inputType="textCapSentences"
|
||||
android:maxLength="30"
|
||||
android:maxLines="1"
|
||||
@ -28,14 +30,14 @@
|
||||
android:textCursorDrawable="@null"
|
||||
android:textSize="@dimen/day_text_size"/>
|
||||
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
||||
<android.support.design.widget.TextInputLayout
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/event_description_label"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/event_title_label"
|
||||
android:layout_marginTop="@dimen/activity_margin">
|
||||
android:layout_below="@+id/event_title"
|
||||
android:layout_marginTop="@dimen/activity_margin"
|
||||
android:text="@string/description"
|
||||
android:textSize="@dimen/day_text_size"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyEditText
|
||||
android:id="@+id/event_description"
|
||||
@ -43,18 +45,16 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/event_description_label"
|
||||
android:gravity="top"
|
||||
android:hint="@string/description"
|
||||
android:inputType="textCapSentences|textMultiLine"
|
||||
android:minEms="20"
|
||||
android:textCursorDrawable="@null"
|
||||
android:textSize="@dimen/day_text_size"/>
|
||||
</android.support.design.widget.TextInputLayout>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/event_start_label"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/event_description_label"
|
||||
android:layout_below="@+id/event_description"
|
||||
android:layout_marginTop="@dimen/activity_margin"
|
||||
android:text="@string/start"
|
||||
android:textSize="@dimen/day_text_size"/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user