blob: 12a9a262343b902e68f459dbca92b9e1f5226f54 [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"
Alexandre Lision423aa132013-12-10 17:31:10 -05005 android:layout_height="?android:attr/listPreferredItemHeight" >
Alexandre Lision933ef0a2013-10-15 17:28:40 -04006
7 <TextView
8 android:id="@+id/codec_name"
9 android:layout_width="wrap_content"
Alexandre Lision423aa132013-12-10 17:31:10 -050010 android:layout_height="?android:attr/listPreferredItemHeight"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040011 android:layout_alignParentLeft="true"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040012 android:layout_marginLeft="4dp"
Alexandre Lision423aa132013-12-10 17:31:10 -050013 android:gravity="center_vertical"
14 android:textSize="18sp" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040015
16 <TextView
17 android:id="@+id/codec_samplerate"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
Alexandre Lision423aa132013-12-10 17:31:10 -050020 android:layout_alignBottom="@+id/codec_name"
21 android:layout_alignTop="@+id/codec_name"
22 android:layout_centerVertical="true"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040023 android:layout_marginLeft="4dp"
Alexandre Lision423aa132013-12-10 17:31:10 -050024 android:layout_toRightOf="@+id/codec_name"
25 android:gravity="center_vertical"
26 android:textSize="12sp"
27 android:visibility="gone" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040028
29 <CheckBox
30 android:id="@+id/codec_checked"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
33 android:layout_alignParentRight="true"
34 android:layout_centerVertical="true"
35 android:clickable="false"
36 android:focusable="false" />
37
38</RelativeLayout>