blob: 46c667024640d77435b90cac1df3dfa96e218aa1 [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"
Alexandre Lision423aa132013-12-10 17:31:10 -050031 android:gravity="center_vertical"
Adrien Béraudabd338e2015-12-12 01:57:31 -050032 android:text="H.264"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040033 android:textColor="@color/text_color_primary"
34 android:textSize="16sp" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040035
36 <TextView
37 android:id="@+id/codec_samplerate"
38 android:layout_width="wrap_content"
39 android:layout_height="wrap_content"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040040 android:layout_alignBaseline="@+id/codec_name"
Alexandre Lision423aa132013-12-10 17:31:10 -050041 android:layout_centerVertical="true"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040042 android:layout_toEndOf="@id/codec_name"
Alexandre Lision423aa132013-12-10 17:31:10 -050043 android:gravity="center_vertical"
Adrien Béraud39e42592015-11-09 18:33:49 -050044 android:text="32000"
45 android:textColor="@color/text_color_secondary"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040046 android:textSize="12sp" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040047
48 <CheckBox
49 android:id="@+id/codec_checked"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040052 android:layout_alignParentEnd="true"
Alexandre Lision933ef0a2013-10-15 17:28:40 -040053 android:layout_centerVertical="true"
Adrien Béraud39e42592015-11-09 18:33:49 -050054 android:layout_marginLeft="16dp"
Adrien Béraudabd338e2015-12-12 01:57:31 -050055 android:layout_marginRight="16dp"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040056 android:clickable="false"
57 android:focusable="false" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040058
59</RelativeLayout>