36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/item_margin_between_elements"
|
|
android:id="@+id/time_layout">
|
|
|
|
<TextView
|
|
android:id="@+id/time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/TextAppearance.AppCompat"
|
|
android:textSize="@dimen/text_size_display_3"
|
|
android:fontFamily="sans-serif-thin"/>
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
android:id="@+id/on_off_switch"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<!-- A mock TextView from which the current Theme's text colors
|
|
can be retrieved. -->
|
|
<TextView
|
|
android:id="@+id/colors_source"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
style="@style/TextAppearance.AppCompat"/>
|
|
|
|
</LinearLayout> |