aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2020-07-22 13:37:36 +0530
committerGitHub <noreply@github.com>2020-07-22 13:37:36 +0530
commitfb5f4e421d8b958ba7fcfa0e6bcaaf1ff350de4b (patch)
tree605c0861dde547e68cff2e27e9343824643430c8 /app/src/main/res/layout
parent511bfb0a9a8241d9ff93dbfa47cfe211629a112e (diff)
Add pt-BR translations and cleanup resources (#947)
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/activity_oreo_autofill_sms.xml61
1 files changed, 0 insertions, 61 deletions
diff --git a/app/src/main/res/layout/activity_oreo_autofill_sms.xml b/app/src/main/res/layout/activity_oreo_autofill_sms.xml
deleted file mode 100644
index d7a87c8e..00000000
--- a/app/src/main/res/layout/activity_oreo_autofill_sms.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?><!--
- ~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
- ~ SPDX-License-Identifier: GPL-3.0-only
- -->
-
-<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="wrap_content"
- android:layout_height="wrap_content"
- android:paddingHorizontal="10dp"
- tools:context="com.zeapo.pwdstore.autofill.oreo.ui.AutofillFilterView">
-
- <ImageView
- android:id="@+id/cover"
- android:layout_width="0dp"
- android:layout_height="50dp"
- android:layout_margin="10dp"
- android:contentDescription="@string/app_name"
- android:src="@mipmap/ic_launcher_foreground"
- app:layout_constraintBottom_toTopOf="@id/text"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintVertical_bias="0.0" />
-
- <TextView
- android:id="@+id/text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:text="@string/oreo_autofill_waiting_for_sms"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/cover" />
-
- <ProgressBar
- android:id="@+id/progress"
- style="@style/Widget.MaterialComponents.ProgressIndicator.Circular.Indeterminate"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- app:layout_constraintBottom_toTopOf="@id/cancelButton"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/text" />
-
- <Button
- android:id="@+id/cancelButton"
- style="@style/Widget.MaterialComponents.Button.TextButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:text="@string/dialog_cancel"
- android:textColor="?attr/colorSecondary"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/progress" />
-
-</androidx.constraintlayout.widget.ConstraintLayout>