mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
adding a time zone divider
This commit is contained in:
@@ -225,6 +225,7 @@ class EventActivity : SimpleActivity() {
|
|||||||
|
|
||||||
updateTextColors(event_scrollview)
|
updateTextColors(event_scrollview)
|
||||||
updateIconColors()
|
updateIconColors()
|
||||||
|
event_time_zone_divider.beVisibleIf(config.allowChangingTimeZones)
|
||||||
event_time_zone_image.beVisibleIf(config.allowChangingTimeZones)
|
event_time_zone_image.beVisibleIf(config.allowChangingTimeZones)
|
||||||
event_time_zone.beVisibleIf(config.allowChangingTimeZones)
|
event_time_zone.beVisibleIf(config.allowChangingTimeZones)
|
||||||
}
|
}
|
||||||
|
@@ -187,6 +187,16 @@
|
|||||||
android:textSize="@dimen/day_text_size"
|
android:textSize="@dimen/day_text_size"
|
||||||
tools:text="00:00" />
|
tools:text="00:00" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/event_time_zone_divider"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="1px"
|
||||||
|
android:layout_below="@+id/event_end_time"
|
||||||
|
android:layout_marginTop="@dimen/medium_margin"
|
||||||
|
android:layout_marginBottom="@dimen/medium_margin"
|
||||||
|
android:background="@color/divider_grey"
|
||||||
|
android:importantForAccessibility="no" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/event_time_zone_image"
|
android:id="@+id/event_time_zone_image"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
@@ -202,7 +212,7 @@
|
|||||||
android:id="@+id/event_time_zone"
|
android:id="@+id/event_time_zone"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@+id/event_end_date"
|
android:layout_below="@+id/event_time_zone_divider"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginStart="@dimen/small_margin"
|
android:layout_marginStart="@dimen/small_margin"
|
||||||
android:layout_toEndOf="@+id/event_time_zone_image"
|
android:layout_toEndOf="@+id/event_time_zone_image"
|
||||||
|
Reference in New Issue
Block a user