Discover

Topics

OnJavaScript

OnJavaScript APK

OnJavaScript APK

2.3 Freefkm ⇣ Download APK (59.77 KB)

Let's write JavaScript on your device!

What's OnJavaScript APK?

OnJavaScript is a app for Android, It's developed by fkm author.
First released on google play in 12 years ago and latest version released in 11 years ago.
This app has 24.7K download times on Google play and rated as 3.95 stars with 73 rated times.
This product is an app in Education category. More infomartion of OnJavaScript on google play
Let's write JavaScript on your device!

This app is like JavaScript interpreter. You can write JavaScript and run!

from Ver 2.0, you can write JavaScript for Android!
You can use following object on your JavaScript.

widget object:
Button widget.createButton(id, text)
TextView widget.createTextView(id, text)
LinearLayout widget.createLinearLayout(id)
-->create android widget
void widget.setOnClick(view, callback)
--> add OnClickEvent to view. in event, callback is called.
void widget.setText(TextView, text)
--> call TextView.setText(text)(you can pass Button, too)
void widget.addView(ViewGroup, view)
--> call ViewGroup.addView(view)

fwindow object:
void fwindow.addView(view)
--> add view to top layout, then view is shown on the screen.