mirror of
https://github.com/SimpleMobileTools/Simple-App-Launcher.git
synced 2025-04-04 21:31:12 +02:00
update commons to 3.0.20
This commit is contained in:
parent
45780b9143
commit
a574052dcc
@ -39,7 +39,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.simplemobiletools:commons:3.0.13'
|
implementation 'com.simplemobiletools:commons:3.0.20'
|
||||||
implementation 'com.facebook.stetho:stetho:1.5.0'
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
||||||
implementation 'com.android.support:multidex:1.0.2'
|
implementation 'com.android.support:multidex:1.0.2'
|
||||||
}
|
}
|
||||||
|
@ -25,14 +25,14 @@ class AddAppLauncherDialog(val activity: Activity, val displayedLaunchers: Array
|
|||||||
.setPositiveButton(R.string.ok, { dialogInterface, i -> confirmSelection() })
|
.setPositiveButton(R.string.ok, { dialogInterface, i -> confirmSelection() })
|
||||||
.setNegativeButton(R.string.cancel, null)
|
.setNegativeButton(R.string.cancel, null)
|
||||||
.create().apply {
|
.create().apply {
|
||||||
activity.setupDialogStuff(view, this)
|
activity.setupDialogStuff(view, this) {
|
||||||
|
Thread {
|
||||||
Thread({
|
adapter = LaunchersDialogAdapter(activity, getNotDisplayedLaunchers())
|
||||||
adapter = LaunchersDialogAdapter(activity, getNotDisplayedLaunchers())
|
activity.runOnUiThread {
|
||||||
activity.runOnUiThread {
|
view.pick_launchers_holder.adapter = adapter
|
||||||
view.pick_launchers_holder.adapter = adapter
|
}
|
||||||
}
|
}.start()
|
||||||
}).start()
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,18 +24,19 @@ class EditDialog(val activity: Activity, val appLauncher: AppLauncher, val callb
|
|||||||
.setNegativeButton(R.string.cancel, null)
|
.setNegativeButton(R.string.cancel, null)
|
||||||
.create().apply {
|
.create().apply {
|
||||||
window!!.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE)
|
window!!.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE)
|
||||||
activity.setupDialogStuff(view, this, R.string.rename)
|
activity.setupDialogStuff(view, this, R.string.rename) {
|
||||||
getButton(android.app.AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
getButton(android.app.AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
||||||
val newName = view.edit_launcher_edittext.value
|
val newName = view.edit_launcher_edittext.value
|
||||||
if (!newName.isEmpty()) {
|
if (!newName.isEmpty()) {
|
||||||
if (activity.dbHelper.updateLauncherName(appLauncher.id, newName)) {
|
if (activity.dbHelper.updateLauncherName(appLauncher.id, newName)) {
|
||||||
callback()
|
callback()
|
||||||
dismiss()
|
dismiss()
|
||||||
|
} else {
|
||||||
|
activity.toast(R.string.unknown_error_occurred)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
activity.toast(R.string.unknown_error_occurred)
|
activity.toast(R.string.enter_launcher_name)
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
activity.toast(R.string.enter_launcher_name)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user