Seguendo le indicazioni di 
https://www.b4x.com/android/forum/threads/flash-player-in-webview.15134/
e
https://www.b4x.com/android/forum/threads/problems-with-webview-and-flash-player.38118/
ho realizzato il progetto qui sotto
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
che ha lo scopo di visualizzare la pagina:
http://www.meteomont.net/metomont/online/stazioni/graph_/altezzaneve.asp?cod=0005
Ma non funziona per nulla, neanche intervenendo nel file manifest nei 2 modi indicati nei citati post. O, meglio, non viene visualizzata l'animazione.
Come riuscirci ?
Grazie per l'attenzione.
			
			https://www.b4x.com/android/forum/threads/flash-player-in-webview.15134/
e
https://www.b4x.com/android/forum/threads/problems-with-webview-and-flash-player.38118/
ho realizzato il progetto qui sotto
			
				B4X:
			
		
		
		Sub Process_Globals
End Sub
Sub Globals
   Dim myw As WebView
   Dim rr As Reflector
   Dim HTMLStr As String
End Sub
Sub Activity_Create(FirstTime As Boolean)
   'HTMLStr = "http://www.canonusa.com"
    HTMLStr ="http://www.meteomont.net/metomont/online/stazioni/graph_/altezzaneve.asp?cod=0005"
   CreateWV
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub CreateWV
   myw.Initialize("myw")
   Activity.AddView(myw,0,0,100%x,100%y)
   rr.Target = myw
    rr.Target = rr.RunMethod("getSettings")
    rr.RunMethod2("setPluginsEnabled", True, "java.lang.boolean")
   myw.JavaScriptEnabled = True
   myw.ZoomEnabled = True
   myw.Visible = True
   myw.LoadURL(HTMLStr)
End Sub
	http://www.meteomont.net/metomont/online/stazioni/graph_/altezzaneve.asp?cod=0005
Ma non funziona per nulla, neanche intervenendo nel file manifest nei 2 modi indicati nei citati post. O, meglio, non viene visualizzata l'animazione.
Come riuscirci ?
Grazie per l'attenzione.