Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

新增使用scheme跳转其他应用的方法 #4539

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions app/src/main/java/io/legado/app/help/JsExtensions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.legado.app.help

import android.content.Intent
import android.net.Uri
import android.webkit.WebSettings
import androidx.annotation.Keep
Expand Down Expand Up @@ -945,4 +946,12 @@ interface JsExtensions : JsEncodeUtils {
return AppConst.androidId
}

/**
* 新增使用scheme跳转其他应用方法
*/
fun openScheme(url: String) {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
appCtx.startActivity(intent)
}
}
Loading