1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00
matomocamp-companion-android/res/layout/item_schedule_event.xml
Christophe Beyls cb9545230c Events in progress are now displayed with a contrasted background color
for the time column in TrackScheduleListFragment.
2014-02-23 19:54:11 +01:00

27 lines
No EOL
1,015 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/activatedBackgroundIndicator"
android:orientation="horizontal" >
<TextView
android:id="@+id/time"
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="@color/schedule_time_background"
android:padding="@dimen/list_item_padding"
android:textColor="@color/schedule_time_foreground"
android:textSize="@dimen/list_item_small_text_size"
android:textStyle="bold" />
<TextView
android:id="@+id/text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawablePadding="6dp"
android:padding="@dimen/list_item_padding"
android:textSize="@dimen/list_item_small_text_size" />
</LinearLayout>