2019-08-23 10:54:03 +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-04-29 14:14:41 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2019-08-23 10:54:03 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-09-26 21:25:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-29 14:14:41 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:background="@color/grey_button_color">
|
2019-09-26 21:25:34 +00:00
|
|
|
|
2020-04-29 14:14:41 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-09-26 21:25:34 +00:00
|
|
|
android:id="@+id/closeButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-29 14:14:41 +00:00
|
|
|
android:layout_marginVertical="16dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:contentDescription="@string/content_description_close_button"
|
|
|
|
android:padding="12dp"
|
|
|
|
app:iconTint="@color/neutral_text"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/title"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/mozac_ic_close" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginVertical="16dp"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:paddingVertical="12dp"
|
|
|
|
android:paddingHorizontal="1dp"
|
2019-09-26 21:25:34 +00:00
|
|
|
android:text="@string/share_header_2"
|
|
|
|
android:textAppearance="@style/HeaderTextStyle"
|
|
|
|
android:textColor="@color/neutral_text"
|
|
|
|
android:textSize="20sp"
|
2020-04-29 14:14:41 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@id/closeButton"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2019-09-26 21:25:34 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/shared_site_list"
|
|
|
|
android:layout_width="match_parent"
|
2020-04-29 14:14:41 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|