ShowWeb
BeanShell
source("/sdcard/com.googlecode.bshforandroid/extras/bsh/android.bsh");
droid = Android();
droid.call("webViewShow","http://www.google.com");
Bex
include("/sdcard/com.googlecode.bexforandroid/extras/bex/android.bex")
droid = Android()
droid.call("webViewShow","http://www.google.com")
Erlang
-module(showWeb_Erlang).
-export([main/0]).
main()->android:webViewShow("http://www.google.com").
Html and JavaScript
<HTML><HEAD><SCRIPT>
var droid = new Android();
droid.webViewShow("http://www.google.com");
</SCRIPT></HEAD><BODY></BODY></HTML>
JRuby
droid = Android.new
droid.webViewShow "http://www.google.com"
JScheme
(import "com.googlecode.rpc.*")
(define droid (com.googlecode.rpc.Android.))
(.call droid "webViewShow" "http://www.google.com")
(exit)
Jawk
import com.googlecode.rpc.*;
BEGIN{
droid = new Android();
droid.call("webViewShow","http://www.google.com");
}
Lua
require "android"
android.webViewShow("http://www.google.com")
PHP
<?php
require_once("Android.php");
$droid = new Android();
$droid->webViewShow("http://www.google.com");
?>
Perl
use Android;
my $droid = Android->new();
$droid->webViewShow("http://www.google.com");
Python
import android
droid = android.Android()
droid.webViewShow('http://www.google.com')
Rhino
load("/sdcard/com.googlecode.rhinoforandroid/extras/rhino/android.js");
var droid = new Android();
droid.webViewShow("http://www.google.com");
Shell
am start -a android.intent.action.VIEW http://www.google.com
Sleep
import com.googlecode.rpc.*;
$droid = [new Android];
[$droid call : "webViewShow","http://www.google.com"];
Squirrel
android <- Android();
android.webViewShow("http://www.google.com");
Tcl
source /sdcard/com.googlecode.tclforandroid/extras/tcl/android/android.tcl
set droid [android]
$droid webViewShow "http://www.google.com"
unset droid
return