blob: c7e1f4a1eac833a281e87e6c0a2ac973ecb6025a [file] [log] [blame]
Adrien Béraudabd338e2015-12-12 01:57:31 -05001<?xml version="1.0" encoding="utf-8"?><!--
Sébastien Blinab53ada2019-01-02 17:23:00 -05002Copyright (C) 2004-2019 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"
Adrien Béraudc0d50b82018-01-22 16:44:06 -050031 android:layout_marginEnd="16dp"
32 android:layout_marginStart="16dp"
Alexandre Lision423aa132013-12-10 17:31:10 -050033 android:gravity="center_vertical"
Adrien Béraud91f88742019-09-09 00:46:46 -040034 android:textColor="@color/textColorPrimary"
Adrien Béraudc0d50b82018-01-22 16:44:06 -050035 android:textSize="16sp"
36 tools:text="H.264" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040037
38 <TextView
39 android:id="@+id/codec_samplerate"
40 android:layout_width="wrap_content"
41 android:layout_height="wrap_content"
Adrien Béraudc0d50b82018-01-22 16:44:06 -050042 android:layout_alignBaseline="@id/codec_name"
Alexandre Lision423aa132013-12-10 17:31:10 -050043 android:layout_centerVertical="true"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040044 android:layout_toEndOf="@id/codec_name"
Adrien Béraudc0d50b82018-01-22 16:44:06 -050045 android:layout_toStartOf="@id/codec_checked"
Alexandre Lision423aa132013-12-10 17:31:10 -050046 android:gravity="center_vertical"
Adrien Béraud91f88742019-09-09 00:46:46 -040047 android:textColor="@color/textColorSecondary"
Adrien Béraudc0d50b82018-01-22 16:44:06 -050048 android:textSize="12sp"
49 tools:text="32000" />
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_centerVertical="true"
Adrien Béraud39e42592015-11-09 18:33:49 -050057 android:layout_marginLeft="16dp"
Adrien Béraudabd338e2015-12-12 01:57:31 -050058 android:layout_marginRight="16dp"
Aline Bonnet17ceeca2017-05-09 16:58:16 -040059 android:clickable="false"
60 android:focusable="false" />
Alexandre Lision933ef0a2013-10-15 17:28:40 -040061
62</RelativeLayout>