use our custom views wherever appropriate

This commit is contained in:
tibbi 2017-01-02 19:59:48 +01:00
parent 93272b0b0f
commit 2d96cb2f2a
12 changed files with 103 additions and 100 deletions

View File

@ -16,7 +16,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/event_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -25,6 +25,7 @@
android:maxLength="30"
android:maxLines="1"
android:minEms="20"
android:textCursorDrawable="@null"
android:textSize="@dimen/day_text_size"/>
</android.support.design.widget.TextInputLayout>
@ -36,7 +37,7 @@
android:layout_below="@+id/event_title_label"
android:layout_marginTop="@dimen/activity_margin">
<EditText
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/event_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -45,10 +46,11 @@
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>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_start_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -57,7 +59,7 @@
android:text="@string/start"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_start_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -66,7 +68,7 @@
android:text="January 1 1970"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_start_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -76,7 +78,7 @@
android:text="00:00"
android:textSize="@dimen/day_text_size"/>
<CheckBox
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/event_end_checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -86,7 +88,7 @@
android:text="@string/end"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_end_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -98,7 +100,7 @@
android:textSize="@dimen/day_text_size"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_end_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -111,7 +113,7 @@
android:textSize="@dimen/day_text_size"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_reminder_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -120,7 +122,7 @@
android:text="@string/reminder"
android:textSize="@dimen/day_text_size"/>
<android.support.v7.widget.AppCompatSpinner
<com.simplemobiletools.commons.views.MyAppCompatSpinner
android:id="@+id/event_reminder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -137,7 +139,7 @@
android:orientation="horizontal"
android:visibility="gone">
<EditText
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/custom_reminder_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -145,9 +147,10 @@
android:inputType="number"
android:maxLength="10"
android:minEms="5"
android:textCursorDrawable="@null"
android:textSize="@dimen/day_text_size"/>
<android.support.v7.widget.AppCompatSpinner
<com.simplemobiletools.commons.views.MyAppCompatSpinner
android:id="@+id/custom_reminder_other_period"
android:layout_width="wrap_content"
android:layout_height="match_parent"
@ -155,7 +158,7 @@
android:gravity="center_vertical"
android:paddingLeft="@dimen/activity_margin"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/custom_reminder_other_val"
android:layout_width="wrap_content"
android:layout_height="match_parent"
@ -164,7 +167,7 @@
android:text="@string/before"/>
</LinearLayout>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_repetition_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -173,7 +176,7 @@
android:text="@string/repetition"
android:textSize="@dimen/day_text_size"/>
<android.support.v7.widget.AppCompatSpinner
<com.simplemobiletools.commons.views.MyAppCompatSpinner
android:id="@+id/event_repetition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@ -14,14 +14,14 @@
android:paddingBottom="@dimen/medium_margin"
android:paddingTop="@dimen/medium_margin">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="13:00"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_end"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -29,7 +29,7 @@
android:text="15:00"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -39,7 +39,7 @@
android:text="Event title"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@ -17,14 +17,14 @@
android:paddingRight="@dimen/activity_margin"
android:paddingTop="@dimen/small_margin">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="13:00"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_end"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -32,7 +32,7 @@
android:text="15:00"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -42,7 +42,7 @@
android:text="Event title"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@ -5,7 +5,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -13,7 +13,7 @@
android:text="13:00"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_end"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -22,7 +22,7 @@
android:text="15:00"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -33,7 +33,7 @@
android:text="Event title"
android:textSize="@dimen/day_text_size"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_item_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView
<com.simplemobiletools.commons.views.MyTextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/event_item_title"
android:layout_width="match_parent"

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView
<com.simplemobiletools.commons.views.MyTextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/event_item_title"
android:layout_width="match_parent"

View File

@ -6,7 +6,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num"
style="@style/DayView"
android:layout_width="0dp"
@ -15,7 +15,7 @@
android:text="#"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_0"
style="@style/DayView"
android:layout_width="0dp"
@ -23,7 +23,7 @@
android:layout_weight="1"
android:text="@string/monday_letter"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_1"
style="@style/DayView"
android:layout_width="0dp"
@ -31,7 +31,7 @@
android:layout_weight="1"
android:text="@string/tuesday_letter"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_2"
style="@style/DayView"
android:layout_width="0dp"
@ -39,7 +39,7 @@
android:layout_weight="1"
android:text="@string/wednesday_letter"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_3"
style="@style/DayView"
android:layout_width="0dp"
@ -47,7 +47,7 @@
android:layout_weight="1"
android:text="@string/thursday_letter"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_4"
style="@style/DayView"
android:layout_width="0dp"
@ -55,7 +55,7 @@
android:layout_weight="1"
android:text="@string/friday_letter"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_5"
style="@style/DayView"
android:layout_width="0dp"
@ -63,7 +63,7 @@
android:layout_weight="1"
android:text="@string/saturday_letter"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/label_6"
style="@style/DayView"
android:layout_width="0dp"

View File

@ -16,7 +16,7 @@
android:visibility="gone"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/calendar_empty_list_placeholder"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@ -27,7 +27,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num_0"
style="@style/DayView"
android:layout_width="0dp"
@ -35,49 +35,49 @@
android:layout_weight="1"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_0"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_1"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_2"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_3"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_4"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_5"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_6"
style="@style/DayView"
android:layout_width="0dp"
@ -91,7 +91,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num_1"
style="@style/DayView"
android:layout_width="0dp"
@ -99,49 +99,49 @@
android:layout_weight="1"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_7"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_8"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_9"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_10"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_11"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_12"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_13"
style="@style/DayView"
android:layout_width="0dp"
@ -155,7 +155,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num_2"
style="@style/DayView"
android:layout_width="0dp"
@ -163,49 +163,49 @@
android:layout_weight="1"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_14"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_15"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_16"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_17"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_18"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_19"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_20"
style="@style/DayView"
android:layout_width="0dp"
@ -219,7 +219,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num_3"
style="@style/DayView"
android:layout_width="0dp"
@ -227,49 +227,49 @@
android:layout_weight="1"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_21"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_22"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_23"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_24"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_25"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_26"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_27"
style="@style/DayView"
android:layout_width="0dp"
@ -283,7 +283,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num_4"
style="@style/DayView"
android:layout_width="0dp"
@ -291,49 +291,49 @@
android:layout_weight="1"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_28"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_29"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_30"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_31"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_32"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_33"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_34"
style="@style/DayView"
android:layout_width="0dp"
@ -347,7 +347,7 @@
android:layout_weight="1"
android:orientation="horizontal">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/week_num_5"
style="@style/DayView"
android:layout_width="0dp"
@ -355,49 +355,49 @@
android:layout_weight="1"
android:visibility="gone"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_35"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_36"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_37"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_38"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_39"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_40"
style="@style/DayView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/day_41"
style="@style/DayView"
android:layout_width="0dp"

View File

@ -16,7 +16,7 @@
android:layout_marginRight="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_1_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -41,7 +41,7 @@
android:layout_marginRight="@dimen/yearly_padding_half"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_2_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -65,7 +65,7 @@
android:layout_marginLeft="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_3_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -91,7 +91,7 @@
android:layout_marginRight="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_4_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -116,7 +116,7 @@
android:layout_marginRight="@dimen/yearly_padding_half"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_5_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -140,7 +140,7 @@
android:layout_marginLeft="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_6_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -167,7 +167,7 @@
android:layout_marginRight="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_7_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -191,7 +191,7 @@
android:layout_marginRight="@dimen/yearly_padding_half"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_8_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -214,7 +214,7 @@
android:layout_marginLeft="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_9_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -241,7 +241,7 @@
android:layout_marginRight="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_10_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -265,7 +265,7 @@
android:layout_marginRight="@dimen/yearly_padding_half"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_11_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@ -289,7 +289,7 @@
android:layout_marginLeft="@dimen/yearly_padding_full"
android:layout_weight="1">
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/month_12_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@ -13,7 +13,7 @@
android:padding="@dimen/activity_margin"
android:src="@mipmap/arrow_left"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/top_value"
style="@style/MonthStyle"
android:layout_width="match_parent"

View File

@ -16,7 +16,7 @@
android:paddingLeft="@dimen/activity_margin"
android:paddingTop="@dimen/medium_margin"/>
<TextView
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/widget_event_list_empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"