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_event.xml
2014-01-08 23:51:57 +01:00

29 lines
No EOL
1 KiB
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="vertical"
android:padding="@dimen/list_item_padding" >
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/list_item_small_text_size"
android:textStyle="bold" />
<TextView
android:id="@+id/track_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/list_item_small_text_size"
android:textStyle="italic" />
<TextView
android:id="@+id/details"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/list_item_small_text_size" />
</LinearLayout>