2019-11-10 17:53:10 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-11 14:11:05 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<FrameLayout
|
2019-11-10 17:53:10 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/dayScroll"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
<com.linkedin.android.tachyon.DayView
|
|
|
|
android:id="@+id/day"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="10dp"
|
|
|
|
app:dividerHeight="1dp"
|
|
|
|
app:endHour="18"
|
|
|
|
app:eventMargin="2dp"
|
|
|
|
app:halfHourDividerColor="#e0e0e0"
|
|
|
|
app:halfHourHeight="60dp"
|
|
|
|
app:hourDividerColor="#b0b0b0"
|
|
|
|
app:hourLabelMarginEnd="10dp"
|
|
|
|
app:hourLabelWidth="40dp"
|
2019-11-11 14:11:05 +01:00
|
|
|
app:startHour="5"
|
|
|
|
tools:visibility="gone"/>
|
2019-11-10 17:53:10 +01:00
|
|
|
</ScrollView>
|
|
|
|
|
2019-11-11 14:11:05 +01:00
|
|
|
</FrameLayout>
|
2019-11-10 17:53:10 +01:00
|
|
|
</layout>
|