diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-04-26 18:20:18 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-04-26 18:20:18 +0000 |
commit | 1a7460b9e2e56697bd70b5c4da1321efdd09f19c (patch) | |
tree | b77ee228bfb4dad7c40f0e5b1f1b94e1ebc5df99 /app/src/main/java/foundation/e/privacycentralapp/common | |
parent | d0f8ec47a5780ba7de15e3d1ebcaa9a1df77da43 (diff) | |
parent | f9f49a9890dc82e0318ed52b7bafa1ce1da38cb5 (diff) | |
download | advanced-privacy-1a7460b9e2e56697bd70b5c4da1321efdd09f19c.tar.gz |
Merge branch '5290_snackbar_qp_disabled' into 'main'
5290 : allow settings while main toggle off.
See merge request e/privacy-central/privacycentralapp!46
Diffstat (limited to 'app/src/main/java/foundation/e/privacycentralapp/common')
-rw-r--r-- | app/src/main/java/foundation/e/privacycentralapp/common/QuickPrivacyDisabledSnackbar.kt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app/src/main/java/foundation/e/privacycentralapp/common/QuickPrivacyDisabledSnackbar.kt b/app/src/main/java/foundation/e/privacycentralapp/common/QuickPrivacyDisabledSnackbar.kt new file mode 100644 index 0000000..705f65d --- /dev/null +++ b/app/src/main/java/foundation/e/privacycentralapp/common/QuickPrivacyDisabledSnackbar.kt @@ -0,0 +1,36 @@ +/* + * Copyright (C) 2022 E FOUNDATION + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +package foundation.e.privacycentralapp.common + +import android.view.View +import com.google.android.material.snackbar.BaseTransientBottomBar +import com.google.android.material.snackbar.Snackbar +import foundation.e.privacycentralapp.R + +fun initQuickPrivacySnackbar(view: View, onDismiss: () -> Unit): Snackbar { + val snackbar = Snackbar.make(view, R.string.quickprivacy_disabled_message, Snackbar.LENGTH_INDEFINITE) + snackbar.setAction(R.string.close) { onDismiss() } + + snackbar.addCallback(object : BaseTransientBottomBar.BaseCallback<Snackbar>() { + override fun onDismissed(transientBottomBar: Snackbar?, event: Int) { + super.onDismissed(transientBottomBar, event) + if (event == DISMISS_EVENT_SWIPE) onDismiss() + } + }) + return snackbar +} |