blob: ed8e24d79c59962a7be0fca37e3854e8e25cfbcc [file] [log] [blame]
Alexandre Lision933ef0a2013-10-15 17:28:40 -04001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lision4b4233a2013-10-16 17:24:17 -04003 android:id="@id/drag_handle"
Alexandre Lision933ef0a2013-10-15 17:28:40 -04004 android:layout_width="match_parent"
5 android:layout_height="wrap_content"
6 android:padding="4dp" >
7
8 <TextView
9 android:id="@+id/codec_name"
10 android:layout_width="wrap_content"
11 android:layout_height="wrap_content"
12 android:layout_alignParentLeft="true"
13 android:layout_alignParentTop="true"
14 android:layout_marginBottom="4dp"
15 android:layout_marginLeft="4dp"
16 android:textAppearance="?android:attr/textAppearanceLarge" />
17
18 <TextView
19 android:id="@+id/codec_samplerate"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:layout_alignParentLeft="true"
23 android:layout_below="@+id/codec_name"
24 android:layout_marginLeft="4dp"
25 android:textAppearance="?android:attr/textAppearanceSmall" />
Alexandre Lision4df961d2013-10-16 13:44:49 -040026
27 <TextView
Alexandre Lision933ef0a2013-10-15 17:28:40 -040028 android:id="@+id/codec_bitrate"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040031 android:layout_below="@+id/codec_name"
32 android:layout_marginLeft="4dp"
Alexandre Lision4df961d2013-10-16 13:44:49 -040033 android:layout_toRightOf="@+id/codec_samplerate"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040034 android:textAppearance="?android:attr/textAppearanceSmall" />
Alexandre Lision4df961d2013-10-16 13:44:49 -040035
36 <TextView
Alexandre Lision933ef0a2013-10-15 17:28:40 -040037 android:id="@+id/codec_channels"
38 android:layout_width="wrap_content"
39 android:layout_height="wrap_content"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040040 android:layout_below="@+id/codec_name"
41 android:layout_marginLeft="4dp"
Alexandre Lision4df961d2013-10-16 13:44:49 -040042 android:layout_toRightOf="@+id/codec_bitrate"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040043 android:textAppearance="?android:attr/textAppearanceSmall" />
44
45 <CheckBox
46 android:id="@+id/codec_checked"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:layout_alignParentRight="true"
50 android:layout_centerVertical="true"
51 android:clickable="false"
52 android:focusable="false" />
53
54</RelativeLayout>