2020-05-26 20:25:52 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2020-06-16 15:42:59 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-26 20:25:52 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-06 19:14:49 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-05-26 20:25:52 +00:00
|
|
|
android:id="@+id/synced_tabs_group"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-16 15:42:59 +00:00
|
|
|
android:layout_marginTop="8dp">
|
2020-05-26 20:25:52 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/synced_tabs_group_name"
|
2020-07-06 19:14:49 +00:00
|
|
|
android:layout_width="0dp"
|
2020-05-26 20:25:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-06-16 15:42:59 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="8dp"
|
2020-07-06 19:14:49 +00:00
|
|
|
android:layout_marginEnd="8dp"
|
2020-06-16 15:42:59 +00:00
|
|
|
android:drawablePadding="32dp"
|
2020-07-06 19:14:49 +00:00
|
|
|
android:gravity="center_vertical|start"
|
2020-05-26 20:25:52 +00:00
|
|
|
android:textAppearance="@style/Header14TextStyle"
|
2021-03-31 10:08:29 +00:00
|
|
|
android:textColor="@color/primary_text_normal_theme"
|
2020-06-16 15:42:59 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
app:drawableStartCompat="@drawable/mozac_ic_device_desktop"
|
2021-03-31 10:08:29 +00:00
|
|
|
app:drawableTint="@color/primary_text_normal_theme"
|
2020-07-06 19:14:49 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-06-16 15:42:59 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-05-26 20:25:52 +00:00
|
|
|
tools:text="Header" />
|
|
|
|
|
2020-06-16 15:42:59 +00:00
|
|
|
<View
|
|
|
|
android:id="@+id/synced_tabs_group_separator"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:background="?syncedTabsSeparator"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:visibility="visible"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/synced_tabs_group_name" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|