lib/android: in Java, use Activity instead of NativeActivity
[nit.git] / examples / mnit_simple / src / simple_android.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012-2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 module simple_android is
18 android_manifest("""<uses-permission android:name="android.permission.VIBRATE" />""")
19 end
20
21 import mnit_android
22 import android::portrait
23 import serialization
24
25 import simple
26
27 in "Java" `{
28 import android.content.Context;
29 import android.widget.Toast;
30 `}
31
32 redef class App
33 redef fun input( ie )
34 do
35 if ie isa PointerEvent and ie.depressed then
36 test_java_ffi
37 end
38 return super
39 end
40
41 fun test_java_ffi import native_activity in "Java" `{
42 // + Log (no context needed)
43 android.util.Log.d("mnit_simple", "Java within NIT!!!");
44
45 // - Context needed from now on
46 final android.app.Activity context = App_native_activity(recv);
47
48 // Vibration
49 android.os.Vibrator v = (android.os.Vibrator)
50 context.getSystemService(android.content.Context.VIBRATOR_SERVICE);
51 v.vibrate(500);
52
53 // - UI thread needed from now on
54 context.runOnUiThread(new Runnable() {
55 @Override
56 public void run() {
57 // + Toast
58 CharSequence text = "Java within Nit!";
59 int duration = Toast.LENGTH_SHORT;
60 Toast toast = Toast.makeText(context, text, duration);
61 toast.show();
62 }
63 });
64 `}
65 end
66
67 class Point
68 auto_serializable
69
70 var x: Int
71 var y: Int
72
73 init(x, y: Int)
74 do
75 self.x = x
76 self.y = y
77 end
78
79 redef fun to_s do return "({x}, {y})"
80 end