|
|
@ -26,8 +26,9 @@ class OnLineImportActivity : |
|
|
|
"bookSource" -> supportFragmentManager.showDialog( |
|
|
|
"bookSource" -> supportFragmentManager.showDialog( |
|
|
|
ImportBookSourceDialog(it.second, true) |
|
|
|
ImportBookSourceDialog(it.second, true) |
|
|
|
) |
|
|
|
) |
|
|
|
"rssSource" -> ImportRssSourceDialog |
|
|
|
"rssSource" -> supportFragmentManager.showDialog( |
|
|
|
.start(supportFragmentManager, it.second, true) |
|
|
|
ImportRssSourceDialog(it.second, true) |
|
|
|
|
|
|
|
) |
|
|
|
"replaceRule" -> supportFragmentManager.showDialog( |
|
|
|
"replaceRule" -> supportFragmentManager.showDialog( |
|
|
|
ImportReplaceRuleDialog(it.second, true) |
|
|
|
ImportReplaceRuleDialog(it.second, true) |
|
|
|
) |
|
|
|
) |
|
|
@ -46,7 +47,9 @@ class OnLineImportActivity : |
|
|
|
"/bookSource" -> supportFragmentManager.showDialog( |
|
|
|
"/bookSource" -> supportFragmentManager.showDialog( |
|
|
|
ImportBookSourceDialog(url, true) |
|
|
|
ImportBookSourceDialog(url, true) |
|
|
|
) |
|
|
|
) |
|
|
|
"/rssSource" -> ImportRssSourceDialog.start(supportFragmentManager, url, true) |
|
|
|
"/rssSource" -> supportFragmentManager.showDialog( |
|
|
|
|
|
|
|
ImportRssSourceDialog(url, true) |
|
|
|
|
|
|
|
) |
|
|
|
"/replaceRule" -> supportFragmentManager.showDialog( |
|
|
|
"/replaceRule" -> supportFragmentManager.showDialog( |
|
|
|
ImportReplaceRuleDialog(url, true) |
|
|
|
ImportReplaceRuleDialog(url, true) |
|
|
|
) |
|
|
|
) |
|
|
@ -66,7 +69,9 @@ class OnLineImportActivity : |
|
|
|
"booksource" -> supportFragmentManager.showDialog( |
|
|
|
"booksource" -> supportFragmentManager.showDialog( |
|
|
|
ImportBookSourceDialog(url, true) |
|
|
|
ImportBookSourceDialog(url, true) |
|
|
|
) |
|
|
|
) |
|
|
|
"rsssource" -> ImportRssSourceDialog.start(supportFragmentManager, url, true) |
|
|
|
"rsssource" -> supportFragmentManager.showDialog( |
|
|
|
|
|
|
|
ImportRssSourceDialog(url, true) |
|
|
|
|
|
|
|
) |
|
|
|
"replace" -> supportFragmentManager.showDialog( |
|
|
|
"replace" -> supportFragmentManager.showDialog( |
|
|
|
ImportReplaceRuleDialog(url, true) |
|
|
|
ImportReplaceRuleDialog(url, true) |
|
|
|
) |
|
|
|
) |
|
|
|