Jainja VM is a new JVM written in Java.
The VM can run on top
of multiple environments : Java SE, Java ME, Android, Javascript, and
even natively in a near future.
You can see Jainja in action in your browser (no Java plugin required, only a HTML5 browser): demo
Sources will be released during FOSDEM 2012.
mardi 22 novembre 2011
jeudi 28 avril 2011
dimanche 24 avril 2011
Android Activity
I succeeded to have a simple Activity working with pointer and keyboard events:
public class HelloAndroidActivity extends Activity {
/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new EditText(this);
tv.setText("This is an EditText view in an AWT Window: \n");
setContentView(tv);
}
I can't go further without the Binder IPC system. It's an important piece of software in Android because almost all the public application framework relies on it to find and use services (window manager, audio, input methods, ...)
lundi 18 avril 2011
Inscription à :
Articles (Atom)