blob: cd0bd51a4da5906085f33b03e8fd2e8dcaf11bfb [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"
Adrien Béraudb179bab2015-10-08 12:04:22 -04003 xmlns:tools="http://schemas.android.com/tools"
Adrien Béraud433a8592015-06-17 16:25:44 -04004 android:id="@+id/codec_container"
Alexandre Lision933ef0a2013-10-15 17:28:40 -04005 android:layout_width="match_parent"
Adrien Béraudb179bab2015-10-08 12:04:22 -04006 android:layout_height="?android:attr/listPreferredItemHeight"
7 tools:context=".client.AccountEditionActivity">
Alexandre Lision933ef0a2013-10-15 17:28:40 -04008
Alexandre Lisionede1a632014-02-11 15:03:42 -05009 <ImageView
10 android:id="@+id/drag_handle"
11 android:layout_width="wrap_content"
12 android:layout_height="wrap_content"
13 android:layout_centerVertical="true"
14 android:layout_alignParentLeft="true"
15 android:layout_marginLeft="10dp"
Adrien Béraudb179bab2015-10-08 12:04:22 -040016 android:src="@drawable/ic_reorder_black_24dp"/>
Alexandre Lisionede1a632014-02-11 15:03:42 -050017
Alexandre Lision933ef0a2013-10-15 17:28:40 -040018 <TextView
19 android:id="@+id/codec_name"
20 android:layout_width="wrap_content"
Alexandre Lision423aa132013-12-10 17:31:10 -050021 android:layout_height="?android:attr/listPreferredItemHeight"
Alexandre Lisionede1a632014-02-11 15:03:42 -050022 android:layout_toRightOf="@+id/drag_handle"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040023 android:layout_marginLeft="4dp"
Alexandre Lision423aa132013-12-10 17:31:10 -050024 android:gravity="center_vertical"
25 android:textSize="18sp" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040026
27 <TextView
28 android:id="@+id/codec_samplerate"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
Alexandre Lision423aa132013-12-10 17:31:10 -050031 android:layout_alignBottom="@+id/codec_name"
32 android:layout_alignTop="@+id/codec_name"
33 android:layout_centerVertical="true"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040034 android:layout_marginLeft="4dp"
Alexandre Lision423aa132013-12-10 17:31:10 -050035 android:layout_toRightOf="@+id/codec_name"
36 android:gravity="center_vertical"
37 android:textSize="12sp"
38 android:visibility="gone" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040039
40 <CheckBox
41 android:id="@+id/codec_checked"
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 android:layout_alignParentRight="true"
45 android:layout_centerVertical="true"
46 android:clickable="false"
47 android:focusable="false" />
48
49</RelativeLayout>