mirror of
https://github.com/SimpleMobileTools/Simple-App-Launcher.git
synced 2025-04-03 12:51:19 +02:00
update commons to 3.0.20
This commit is contained in:
parent
45780b9143
commit
a574052dcc
@ -39,7 +39,7 @@ android {
|
||||
}
|
||||
|
||||
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.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() })
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.create().apply {
|
||||
activity.setupDialogStuff(view, this)
|
||||
|
||||
Thread({
|
||||
adapter = LaunchersDialogAdapter(activity, getNotDisplayedLaunchers())
|
||||
activity.runOnUiThread {
|
||||
view.pick_launchers_holder.adapter = adapter
|
||||
}
|
||||
}).start()
|
||||
activity.setupDialogStuff(view, this) {
|
||||
Thread {
|
||||
adapter = LaunchersDialogAdapter(activity, getNotDisplayedLaunchers())
|
||||
activity.runOnUiThread {
|
||||
view.pick_launchers_holder.adapter = adapter
|
||||
}
|
||||
}.start()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -24,18 +24,19 @@ class EditDialog(val activity: Activity, val appLauncher: AppLauncher, val callb
|
||||
.setNegativeButton(R.string.cancel, null)
|
||||
.create().apply {
|
||||
window!!.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE)
|
||||
activity.setupDialogStuff(view, this, R.string.rename)
|
||||
getButton(android.app.AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
||||
val newName = view.edit_launcher_edittext.value
|
||||
if (!newName.isEmpty()) {
|
||||
if (activity.dbHelper.updateLauncherName(appLauncher.id, newName)) {
|
||||
callback()
|
||||
dismiss()
|
||||
activity.setupDialogStuff(view, this, R.string.rename) {
|
||||
getButton(android.app.AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
||||
val newName = view.edit_launcher_edittext.value
|
||||
if (!newName.isEmpty()) {
|
||||
if (activity.dbHelper.updateLauncherName(appLauncher.id, newName)) {
|
||||
callback()
|
||||
dismiss()
|
||||
} else {
|
||||
activity.toast(R.string.unknown_error_occurred)
|
||||
}
|
||||
} 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