add a toggle for closing this app if another one opens

This commit is contained in:
tibbi 2018-05-22 14:09:14 +02:00
parent 4dd13f2076
commit 5105449e0a
20 changed files with 55 additions and 1 deletions

View File

@ -110,7 +110,9 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
val launchIntent = packageManager.getLaunchIntentForPackage((it as AppLauncher).packageName)
if (launchIntent != null) {
startActivity(launchIntent)
finish()
if (config.closeApp) {
finish()
}
} else {
val url = "https://play.google.com/store/apps/details?id=${it.packageName}"
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))

View File

@ -22,6 +22,7 @@ class SettingsActivity : SimpleActivity() {
setupUseEnglish()
setupAvoidWhatsNew()
setupShowInfoBubble()
setupCloseApp()
updateTextColors(settings_holder)
}
@ -56,4 +57,12 @@ class SettingsActivity : SimpleActivity() {
config.showInfoBubble = settings_show_info_bubble.isChecked
}
}
private fun setupCloseApp() {
settings_close_app.isChecked = config.closeApp
settings_close_app_holder.setOnClickListener {
settings_close_app.toggle()
config.closeApp = settings_close_app.isChecked
}
}
}

View File

@ -11,4 +11,8 @@ class Config(context: Context) : BaseConfig(context) {
var wasRemoveInfoShown: Boolean
get() = prefs.getBoolean(WAS_REMOVE_INFO_SHOWN, false)
set(wasRemoveInfoShown) = prefs.edit().putBoolean(WAS_REMOVE_INFO_SHOWN, wasRemoveInfoShown).apply()
var closeApp: Boolean
get() = prefs.getBoolean(CLOSE_APP, true)
set(closeApp) = prefs.edit().putBoolean(CLOSE_APP, closeApp).apply()
}

View File

@ -1,6 +1,7 @@
package com.simplemobiletools.applauncher.helpers
const val WAS_REMOVE_INFO_SHOWN = "was_remove_info_shown"
const val CLOSE_APP = "close_app"
val predefinedPackageNames = arrayListOf(
"com.simplemobiletools.calculator",

View File

@ -95,5 +95,28 @@
android:text="@string/show_info_bubble"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/settings_close_app_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/medium_margin"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin"
android:paddingLeft="@dimen/normal_margin"
android:paddingRight="@dimen/normal_margin"
android:paddingTop="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MySwitchCompat
android:id="@+id/settings_close_app"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:clickable="false"
android:paddingLeft="@dimen/medium_margin"
android:paddingStart="@dimen/medium_margin"
android:text="@string/close_app"/>
</RelativeLayout>
</LinearLayout>
</ScrollView>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">مشغل التطبيق</string>
<string name="enter_launcher_name">الرجاء ادراج اسم للإختصار</string>
<string name="remove_explanation">هذا سيقوم بحذف الايقونة فقط من الواجهة الحالية,ولن يقوم بإلغاء تثبيت حزمة التطبيق.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">الحاسبة</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Tətbiq Başladıcı</string>
<string name="enter_launcher_name">Başladıcı adı daxil edin</string>
<string name="remove_explanation">Bu proses yalnız tətbiq ikonunu siyahıdan siləcək, tətbiqin özü silinməyəcək.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Kalkulyator</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">App-Launcher</string>
<string name="enter_launcher_name">Bitte gib einen Namen für die Verknüpfung ein</string>
<string name="remove_explanation">Diese Aktion wird das App-Icon nur aus dem Raster löschen, nicht die eigentliche App deinstallieren.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Rechner</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Εκκινητής Εφαρμογών_αποσφαλμάτωση</string>
<string name="enter_launcher_name">Παρακαλώ εισήγαγε ένα όνομα εκκινητή</string>
<string name="remove_explanation">Αυτό, απλά, θα αφαιρέσει το εικονίδιο εκκίνησης από αυτό το πλαίσιο. Δεν θα απεγκαταστήσει την ίδια την εφαρμογή.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Αριθμομηχανή</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Lanzador de aplicaciones</string>
<string name="enter_launcher_name">Por favor, introduzca un nombre para el lanzador</string>
<string name="remove_explanation">This will just remove the launcher icon from this grid, not uninstall the actual app.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Calculadora</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">App Launcher</string>
<string name="enter_launcher_name">Veuillez entrer un nom de launcher</string>
<string name="remove_explanation">Cette action ne fera que supprimer l\'icône du launcher de cette liste et ne désinstallere pas l\'application.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Calculatrice</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Pokretač aplikacija</string>
<string name="enter_launcher_name">Unesite naziv pokretača</string>
<string name="remove_explanation">To će ukloniti ikonu pokretača samo iz mreže, ali ne i deinstalirati aplikaciju.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Kalkulator</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">アプリ ランチャー</string>
<string name="enter_launcher_name">ランチャーの名前を入力してください</string>
<string name="remove_explanation">This will just remove the launcher icon from this grid, not uninstall the actual app.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">電卓</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Paleidimo priemonė</string>
<string name="enter_launcher_name">Prašome įvesti paleidimo priemonės pavadinimą</string>
<string name="remove_explanation">Tai tik pašalins paleidimo priemonės ikonėlę iš tinklelio, nepašalins pačios programėlės.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Skaičiuotuvas</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Launcher Aplikacji</string>
<string name="enter_launcher_name">Proszę wpisać nazwę launchera</string>
<string name="remove_explanation">This will just remove the launcher icon from this grid, not uninstall the actual app.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Kalkulator</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Lançador de aplicações</string>
<string name="enter_launcher_name">Por favor digite um nome para o lançador</string>
<string name="remove_explanation">Esta ação remove o ícone da grelha mas não desinstala a aplicação.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Calculadora</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Лаунчер</string>
<string name="enter_launcher_name">Пожалуйста, введите название лаунчера</string>
<string name="remove_explanation">Это только удалит иконку лаунчера с сетки, но не удалит само приложение.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Калькулятор</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">Spúšťač aplikácií</string>
<string name="enter_launcher_name">Prosím zadajte názov pre spúšťač</string>
<string name="remove_explanation">Toto iba odstráni spúšťačku z tejto mriežky, neodinštaluje to samotnú apku.</string>
<string name="close_app">Ukončiť túto aplikáciu pri spustení inej</string>
<!-- Apps -->
<string name="calculator">Kalkulačka</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">簡易應用程式啟動器</string>
<string name="enter_launcher_name">請輸入啟動器名稱</string>
<string name="remove_explanation">這只會從畫面移除啟動器圖標,不會解除安裝實際程式。</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">計算機</string>

View File

@ -3,6 +3,7 @@
<string name="app_launcher_name">App Launcher</string>
<string name="enter_launcher_name">Please enter a launcher name</string>
<string name="remove_explanation">This will just remove the launcher icon from this grid, not uninstall the actual app.</string>
<string name="close_app">Close this app at launching a different one</string>
<!-- Apps -->
<string name="calculator">Calculator</string>