blob: 63eb9fb538e9e0cc977047ed64ee81f929e89903 [file] [log] [blame]
Adrien Béraudabd338e2015-12-12 01:57:31 -05001<?xml version="1.0" encoding="utf-8"?><!--
Adrien Béraudec528bb2016-01-14 16:52:51 -05002Copyright (C) 2004-2016 Savoir-faire Linux Inc.
Adrien Béraudabd338e2015-12-12 01:57:31 -05003
4Author: Adrien Béraud <adrien.beraud@savoirfairelinux.com>
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19-->
20
Alexandre Lision933ef0a2013-10-15 17:28:40 -040021<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Adrien Béraudb179bab2015-10-08 12:04:22 -040022 xmlns:tools="http://schemas.android.com/tools"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040023 android:layout_width="match_parent"
Adrien Béraudb179bab2015-10-08 12:04:22 -040024 android:layout_height="?android:attr/listPreferredItemHeight"
Alexandre Lisionecaab112017-05-13 14:49:49 -040025 tools:context=".account.AccountEditionActivity">
Alexandre Lision933ef0a2013-10-15 17:28:40 -040026
27 <TextView
28 android:id="@+id/codec_name"
29 android:layout_width="wrap_content"
Alexandre Lision423aa132013-12-10 17:31:10 -050030 android:layout_height="?android:attr/listPreferredItemHeight"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040031 android:layout_marginLeft="16dp"
Alexandre Lision423aa132013-12-10 17:31:10 -050032 android:gravity="center_vertical"
Adrien Béraudabd338e2015-12-12 01:57:31 -050033 android:text="H.264"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040034 android:textColor="@color/text_color_primary"
35 android:textSize="16sp" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040036
37 <TextView
38 android:id="@+id/codec_samplerate"
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040041 android:layout_alignBaseline="@+id/codec_name"
Alexandre Lision423aa132013-12-10 17:31:10 -050042 android:layout_centerVertical="true"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040043 android:layout_marginLeft="16dp"
44 android:layout_toEndOf="@id/codec_name"
Alexandre Lision423aa132013-12-10 17:31:10 -050045 android:layout_toRightOf="@+id/codec_name"
46 android:gravity="center_vertical"
Adrien Béraud39e42592015-11-09 18:33:49 -050047 android:text="32000"
48 android:textColor="@color/text_color_secondary"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040049 android:textSize="12sp" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040050
51 <CheckBox
52 android:id="@+id/codec_checked"
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040055 android:layout_alignParentEnd="true"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040056 android:layout_alignParentRight="true"
57 android:layout_centerVertical="true"
Adrien Béraud39e42592015-11-09 18:33:49 -050058 android:layout_marginLeft="16dp"
Adrien Béraudabd338e2015-12-12 01:57:31 -050059 android:layout_marginRight="16dp"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040060 android:clickable="false"
61 android:focusable="false" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040062
63</RelativeLayout>