2019-11-11 22:08:51 +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/. -->
|
2019-12-18 17:26:41 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?foundation"
|
2020-05-07 13:57:18 +00:00
|
|
|
android:paddingBottom="4dp">
|
2019-11-11 22:08:51 +00:00
|
|
|
|
2019-12-18 17:26:41 +00:00
|
|
|
<ImageView
|
2020-05-07 13:57:18 +00:00
|
|
|
android:id="@+id/download_dialog_icon"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_marginStart="16dp"
|
2020-05-07 13:57:18 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:scaleType="center"
|
|
|
|
android:tint="?primaryText"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/mozac_feature_download_ic_download_complete" />
|
2019-11-11 22:08:51 +00:00
|
|
|
|
2019-12-18 17:26:41 +00:00
|
|
|
<TextView
|
2020-05-07 13:57:18 +00:00
|
|
|
android:id="@+id/download_dialog_title"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginStart="3dp"
|
2020-05-07 13:57:18 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:layout_marginEnd="11dp"
|
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:textColor="?primaryText"
|
|
|
|
android:textSize="16sp"
|
2020-05-07 13:57:18 +00:00
|
|
|
app:layout_constraintEnd_toStartOf="@id/download_dialog_close_button"
|
2019-12-18 17:26:41 +00:00
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
2020-05-07 13:57:18 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@id/download_dialog_icon"
|
2019-12-18 17:26:41 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="Download (85.7 MB)" />
|
2019-11-11 22:08:51 +00:00
|
|
|
|
2019-12-18 17:26:41 +00:00
|
|
|
<ImageButton
|
2020-05-07 13:57:18 +00:00
|
|
|
android:id="@+id/download_dialog_close_button"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:background="@null"
|
|
|
|
android:contentDescription="@string/mozac_feature_downloads_button_close"
|
|
|
|
android:tint="?primaryText"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/mozac_ic_close" />
|
2019-11-11 22:08:51 +00:00
|
|
|
|
2019-12-18 17:26:41 +00:00
|
|
|
<TextView
|
2020-05-07 13:57:18 +00:00
|
|
|
android:id="@+id/download_dialog_filename"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="3dp"
|
2020-05-07 13:57:18 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:paddingStart="5dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:textColor="?primaryText"
|
2020-05-07 13:57:18 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@id/download_dialog_icon"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/download_dialog_title"
|
2019-12-18 17:26:41 +00:00
|
|
|
tools:text="Firefox_Preview_v2.1.apk" />
|
2019-11-11 22:08:51 +00:00
|
|
|
|
2019-12-18 17:26:41 +00:00
|
|
|
<Button
|
2020-05-07 13:57:18 +00:00
|
|
|
android:id="@+id/download_dialog_action_button"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-07 13:57:18 +00:00
|
|
|
android:layout_marginTop="8dp"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:layout_marginEnd="16dp"
|
2020-05-07 13:57:18 +00:00
|
|
|
android:layout_marginBottom="8dp"
|
2019-12-18 17:26:41 +00:00
|
|
|
android:background="@drawable/rounded_all_corners"
|
|
|
|
android:backgroundTint="?accent"
|
|
|
|
android:text="@string/mozac_feature_downloads_button_open"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="?contrastText"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-05-07 13:57:18 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/download_dialog_filename" />
|
2019-12-18 17:26:41 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|