我想在网页中提供一个按钮。单击它后,用户必须重定向到他从中打开了网页的应用程序。我的想法是在用户单击网页中的按钮后触发android后退按钮。这是一种可能的方法,还是有其他任何方法正在做。
答案 0 :(得分:1)
这将创建一个名为Android的界面,用于在WebView中运行的JavaScript。此时,您的Web应用程序可以访问WebAppInterface类。例如,下面是一些HTML和JavaScript,它们在用户单击按钮时使用新界面创建了敬酒消息:
<input type="button" value="Say hello" onClick="showAndroidToast('Hello Android!')" />
<script type="text/javascript">
function showAndroidToast(toast) {
Android.showToast(toast);
}
</script>
您可以在Android应用中添加以下类:
public class WebAppInterface {
Context mContext;
/** Instantiate the interface and set the context */
WebAppInterface(Context c) {
mContext = c;
}
/** Show a toast from the web page */
@JavascriptInterface
public void showToast(String toast) {
Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}
答案 1 :(得分:0)
您需要使用JavascriptInterface
与WebView
和应用之间进行通信。