Fix: Show help

This commit is contained in:
zt515
2017-08-15 19:22:04 +08:00
parent 3c41450497
commit bf510e9e0a

View File

@ -40,7 +40,9 @@ class App : Application() {
}
fun openHelpLink() {
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://neoterm.gitbooks.io/neoterm-wiki/content/")))
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://neoterm.gitbooks.io/neoterm-wiki/content/"))
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
startActivity(intent)
}
companion object {