blob: 61e6b4dd3f68fb04fea85a961256090b74a3d330 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?><!--
Copyright (C) 2004-2020 Savoir-faire Linux Inc.
Author: Adrien BĂ©raud <adrien.beraud@savoirfairelinux.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
tools:context=".account.AccountEditionFragment">
<TextView
android:id="@+id/codec_name"
android:layout_width="wrap_content"
android:layout_height="?android:attr/listPreferredItemHeight"
android:layout_marginEnd="16dp"
android:layout_marginStart="72dp"
android:gravity="center_vertical"
android:textColor="@color/textColorPrimary"
android:textSize="16sp"
tools:text="H.264" />
<TextView
android:id="@+id/codec_samplerate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@id/codec_name"
android:layout_centerVertical="true"
android:layout_toEndOf="@id/codec_name"
android:layout_toStartOf="@id/codec_checked"
android:gravity="center_vertical"
android:textColor="@color/textColorSecondary"
android:textSize="12sp"
tools:text="32000" />
<CheckBox
android:id="@+id/codec_checked"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:clickable="false"
android:focusable="false" />
</RelativeLayout>