diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-03-05 21:05:50 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-05 21:05:50 +0530 |
commit | 73058d10a8e28fe4e7636ad5c73eeb8651369cdb (patch) | |
tree | f5d15b6dc45eb3d2ac5f2e33a5e4362e4b84285d /app/src/main/res/layout | |
parent | addefdc9a3eac4124d304ee4f810daaeed419996 (diff) |
Resolve various memory leaks (#637)
This migrates the clipboard clear logic into a foreground service that allows us to also provide a notification that runs the clear task immediately on click, rather than wait for the timeout.
Co-authored-by: Aditya Wasan <adityawasan55@gmail.com>
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/decrypt_layout.xml | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/app/src/main/res/layout/decrypt_layout.xml b/app/src/main/res/layout/decrypt_layout.xml index 17ab55ed..8f8198a4 100644 --- a/app/src/main/res/layout/decrypt_layout.xml +++ b/app/src/main/res/layout/decrypt_layout.xml @@ -94,16 +94,6 @@ app:layout_constraintBaseline_toBaselineOf="@id/crypto_password_show_label" android:typeface="monospace" /> - <ProgressBar - android:id="@+id/pbLoading" - style="?android:attr/progressBarStyleHorizontal" - android:layout_width="match_parent" - android:layout_height="8dp" - android:layout_marginBottom="8dp" - android:visibility="invisible" - android:layout_marginTop="8dp" - app:layout_constraintTop_toBottomOf="@id/crypto_password_show_label"/> - <com.google.android.material.button.MaterialButton style="@style/Widget.MaterialComponents.Button" android:id="@+id/crypto_password_toggle_show" |