android WebView是否支持JSP?

时间:2016-04-13 07:45:32

标签: android jsp android-webview

在我的项目中,我使用的是显示所有页面但未加载此页面的WebView,

https://sarathi.nic.in:8443/nrportal/sarathi/Browser/Help_LLNew.html

需要知道Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Address = "$D$1" Or Target.Address = "$D$2" Then fName = Application.GetOpenFilename("Picture files (*.jpg;*.gif;*.bmp;*.tif), *.jpgs;*.gif;*.bmp;*.tif", , _ "Select picture to insert") If fName = "False" Then Exit Sub ActiveSheet.Pictures.Insert(fName).Select With Selection.ShapeRange .LockAspectRatio = msoFalse .Height = ActiveCell.Height .Width = ActiveCell.Width .Top = ActiveCell.Top .Left = ActiveCell.Left End With End If End Sub 支持JSP吗?

2 个答案:

答案 0 :(得分:0)

webview是一个基于铬的容器

从技术上讲,它不依赖于所使用的服务器端技术

更多细节here

我最近参与了一个项目,该项目有一个安卓计数器部分应用程序在webview中打开整个网站作为应用程序功能的扩展 - 它通过iframe和支付网关以及使用bootstrap的响应式布局工作得很好 -

答案 1 :(得分:0)

也许启用javascript就可以了。 你可以这样做

yourWebView.getSettings().setJavaScriptEnabled(true);