summaryrefslogtreecommitdiff
path: root/navit/android/src/org/navitproject/navit/NavitGraphics.java
blob: bb8ec83356219aa2c917959e178100789f75ddbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
/**
 * Navit, a modular navigation system.
 * Copyright (C) 2005-2008 Navit Team
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */

package org.navitproject.navit;

import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Context;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PointF;
import android.graphics.Rect;
import android.os.Build;
import android.os.Handler;
import android.os.Message;
import android.support.v4.view.ViewConfigurationCompat;
import android.util.Log;
import android.view.ContextMenu;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewConfiguration;
import android.view.ViewGroup.LayoutParams;
import android.view.inputmethod.InputMethodManager;
import android.widget.FrameLayout;
import android.widget.RelativeLayout;
import java.io.File;
import java.lang.reflect.Method;
import java.util.ArrayList;


public class NavitGraphics {
    private static final String            TAG = "NavitGraphics";
    private final NavitGraphics            parent_graphics;
    private final ArrayList<NavitGraphics> overlays = new ArrayList<NavitGraphics>();
    private int                            bitmap_w;
    private int                            bitmap_h;
    private int                            pos_x;
    private int                            pos_y;
    private int                            pos_wraparound;
    private int                            overlay_disabled;
    private int                            bgcolor;
    private float                          trackball_x;
    private float                          trackball_y;
    private int                            padding_left                    = 0;
    private int                            padding_right                   = 0;
    private int                            padding_top                     = 0;
    private int                            padding_bottom                  = 0;
    private View                           view;
    private SystemBarTintView              leftTintView;
    private SystemBarTintView              rightTintView;
    private SystemBarTintView              topTintView;
    private SystemBarTintView              bottomTintView;
    private FrameLayout                    frameLayout;
    private RelativeLayout                 relativelayout;
    private NavitCamera                    camera;
    private Navit                          activity;
    private static Boolean                 in_map = false;
    // for menu key
    private static final long              time_for_long_press = 300L;


    private Handler timer_handler = new Handler();

    public void setBackgroundColor(int bgcolor) {
        this.bgcolor = bgcolor;
        if (leftTintView != null) {
            leftTintView.setBackgroundColor(bgcolor);
        }
        if (rightTintView != null) {
            rightTintView.setBackgroundColor(bgcolor);
        }
        if (topTintView != null) {
            topTintView.setBackgroundColor(bgcolor);
        }
        if (bottomTintView != null) {
            bottomTintView.setBackgroundColor(bgcolor);
        }
    }

    private void SetCamera(int use_camera) {
        if (use_camera != 0 && camera == null) {
            // activity.requestWindowFeature(Window.FEATURE_NO_TITLE);
            camera = new NavitCamera(activity);
            relativelayout.addView(camera);
            relativelayout.bringChildToFront(view);
        }
    }

    private Rect get_rect() {
        Rect ret = new Rect();
        ret.left = pos_x;
        ret.top = pos_y;
        if (pos_wraparound != 0) {
            if (ret.left < 0) {
                ret.left += parent_graphics.bitmap_w;
            }
            if (ret.top < 0) {
                ret.top += parent_graphics.bitmap_h;
            }
        }
        ret.right = ret.left + bitmap_w;
        ret.bottom = ret.top + bitmap_h;
        if (pos_wraparound != 0) {
            if (bitmap_w < 0) {
                ret.right = ret.left + bitmap_w + parent_graphics.bitmap_w;
            }
            if (bitmap_h < 0) {
                ret.bottom = ret.top + bitmap_h + parent_graphics.bitmap_h;
            }
        }
        return ret;
    }

    private class NavitView extends View implements Runnable, MenuItem.OnMenuItemClickListener {
        int               touch_mode = NONE;
        float             oldDist    = 0;
        static final int  NONE       = 0;
        static final int  DRAG       = 1;
        static final int  ZOOM       = 2;
        static final int  PRESSED    = 3;

        Method eventGetX = null;
        Method eventGetY = null;

        PointF    mPressedPosition = null;

        public NavitView(Context context) {
            super(context);
            try {
                eventGetX = android.view.MotionEvent.class.getMethod("getX", int.class);
                eventGetY = android.view.MotionEvent.class.getMethod("getY", int.class);
            } catch (Exception e) {
                Log.e(TAG, "Multitouch zoom not supported");
            }
        }

        @Override
        protected void onCreateContextMenu(ContextMenu menu) {
            super.onCreateContextMenu(menu);

            menu.setHeaderTitle(activity.getTstring(R.string.position_popup_title) + "..");
            menu.add(1, 1, NONE, activity.getTstring(R.string.position_popup_drive_here))
                    .setOnMenuItemClickListener(this);
            menu.add(1, 2, NONE, activity.getTstring(R.string.cancel)).setOnMenuItemClickListener(this);
        }

        @Override
        public boolean onMenuItemClick(MenuItem item) {
            switch (item.getItemId()) {
                case 1:
                    Message msg = Message.obtain(callback_handler, msg_type.CLB_SET_DISPLAY_DESTINATION.ordinal(),
                            (int)mPressedPosition.x, (int)mPressedPosition.y);
                    msg.sendToTarget();
                    break;
            }
            return false;
        }


        @Override
        protected void onDraw(Canvas canvas) {
            super.onDraw(canvas);
            canvas.drawBitmap(draw_bitmap, pos_x, pos_y, null);
            if (overlay_disabled == 0) {
                // assume we ARE in map view mode!
                in_map = true;
                for (NavitGraphics overlay : overlays) {
                    if (overlay.overlay_disabled == 0) {
                        Rect r = overlay.get_rect();
                        canvas.drawBitmap(overlay.draw_bitmap, r.left, r.top, null);
                    }
                }
            } else {
                if (Navit.show_soft_keyboard) {
                    if (Navit.mgr != null) {
                        Navit.mgr.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT);
                        Navit.show_soft_keyboard_now_showing = true;
                        // clear the variable now, keyboard will stay on screen until backbutton pressed
                        Navit.show_soft_keyboard = false;
                    }
                }
            }
        }

        @Override
        protected void onSizeChanged(int w, int h, int oldw, int oldh) {
            Log.d(TAG, "onSizeChanged pixels x=" + w + " pixels y=" + h);
            Log.d(TAG, "onSizeChanged density=" + Navit.metrics.density);
            Log.d(TAG, "onSizeChanged scaledDensity=" + Navit.metrics.scaledDensity);
            super.onSizeChanged(w, h, oldw, oldh);

            handleResize(w, h);
        }

        void do_longpress_action() {
            Log.d(TAG, "do_longpress_action enter");

            activity.openContextMenu(this);
        }

        private int getActionField(String fieldname, Object obj) {
            int ret_value = -999;
            try {
                java.lang.reflect.Field field = android.view.MotionEvent.class.getField(fieldname);
                try {
                    ret_value = field.getInt(obj);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            } catch (NoSuchFieldException ex) {
                ex.printStackTrace();
            }
            return ret_value;
        }

        @SuppressLint("ClickableViewAccessibility")
        @Override
        public boolean onTouchEvent(MotionEvent event) {
            super.onTouchEvent(event);
            int x = (int) event.getX();
            int y = (int) event.getY();

            int _ACTION_POINTER_UP_ = getActionField("ACTION_POINTER_UP", event);
            int _ACTION_POINTER_DOWN_ = getActionField("ACTION_POINTER_DOWN", event);
            int _ACTION_MASK_ = getActionField("ACTION_MASK", event);

            int switch_value = event.getAction();
            if (_ACTION_MASK_ != -999) {
                switch_value = (event.getAction() & _ACTION_MASK_);
            }

            if (switch_value == MotionEvent.ACTION_DOWN) {
                touch_mode = PRESSED;
                if (!in_map) {
                    ButtonCallback(ButtonCallbackID, 1, 1, x, y); // down
                }
                mPressedPosition = new PointF(x, y);
                postDelayed(this, time_for_long_press);
            } else if ((switch_value == MotionEvent.ACTION_UP) || (switch_value == _ACTION_POINTER_UP_)) {
                Log.d(TAG, "ACTION_UP");

                switch (touch_mode) {
                    case DRAG:
                        Log.d(TAG, "onTouch move");

                        MotionCallback(MotionCallbackID, x, y);
                        ButtonCallback(ButtonCallbackID, 0, 1, x, y); // up

                        break;
                    case ZOOM:
                        float newDist = spacing(getFloatValue(event, 0), getFloatValue(event, 1));
                        float scale = 0;
                        if (newDist > 10f) {
                            scale = newDist / oldDist;
                        }

                        if (scale > 1.3) {
                            // zoom in
                            CallbackMessageChannel(1, null);
                        } else if (scale < 0.8) {
                            // zoom out
                            CallbackMessageChannel(2, null);
                        }
                        break;
                    case PRESSED:
                        if (in_map) {
                            ButtonCallback(ButtonCallbackID, 1, 1, x, y); // down
                        }
                        ButtonCallback(ButtonCallbackID, 0, 1, x, y); // up

                        break;
                }
                touch_mode = NONE;
            } else if (switch_value == MotionEvent.ACTION_MOVE) {
                switch (touch_mode) {
                    case DRAG:
                        MotionCallback(MotionCallbackID, x, y);
                        break;
                    case ZOOM:
                        float newDist = spacing(getFloatValue(event, 0), getFloatValue(event, 1));
                        float scale = newDist / oldDist;
                        Log.d(TAG, "New scale = " + scale);
                        if (scale > 1.2) {
                            // zoom in
                            CallbackMessageChannel(1, "");
                            oldDist = newDist;
                        } else if (scale < 0.8) {
                            oldDist = newDist;
                            // zoom out
                            CallbackMessageChannel(2, "");
                        }
                        break;
                    case PRESSED:
                        Log.d(TAG, "Start drag mode");
                        if (spacing(mPressedPosition, new PointF(event.getX(), event.getY())) > 20f) {
                            ButtonCallback(ButtonCallbackID, 1, 1, x, y); // down
                            touch_mode = DRAG;
                        }
                        break;
                }
            } else if (switch_value == _ACTION_POINTER_DOWN_) {
                oldDist = spacing(getFloatValue(event, 0), getFloatValue(event, 1));
                if (oldDist > 2f) {
                    touch_mode = ZOOM;
                }
            }
            return true;
        }

        private float spacing(PointF a, PointF b) {
            float x = a.x - b.x;
            float y = a.y - b.y;
            return (float)Math.sqrt(x * x + y * y);
        }

        private PointF getFloatValue(Object instance, Object argument) {
            PointF pos = new PointF(0,0);

            if (eventGetX != null && eventGetY != null) {
                try {
                    Float x = (java.lang.Float) eventGetX.invoke(instance, argument);
                    Float y = (java.lang.Float) eventGetY.invoke(instance, argument);
                    pos.set(x, y);

                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
            return pos;
        }

        @Override
        public boolean onKeyDown(int keyCode, KeyEvent event) {
            int i;
            String s = null;
            long interval_for_long_press = 200L;
            i = event.getUnicodeChar();
            if (i == 0) {
                switch (keyCode) {
                    case KeyEvent.KEYCODE_DEL:
                        s = String.valueOf((char) 8);
                        break;
                    case KeyEvent.KEYCODE_MENU:
                        if (!in_map) {
                            // if last menukeypress is less than 0.2 seconds away then count longpress
                            if ((System.currentTimeMillis() - Navit.last_pressed_menu_key) < interval_for_long_press) {
                                Navit.time_pressed_menu_key = Navit.time_pressed_menu_key
                                    + (System.currentTimeMillis() - Navit.last_pressed_menu_key);
                                // on long press let softkeyboard popup
                                if (Navit.time_pressed_menu_key > time_for_long_press) {
                                    Navit.show_soft_keyboard = true;
                                    Navit.time_pressed_menu_key = 0L;
                                    // need to draw to get the keyboard showing
                                    this.postInvalidate();
                                }
                            } else {
                                Navit.time_pressed_menu_key = 0L;
                            }
                            Navit.last_pressed_menu_key = System.currentTimeMillis();
                            // if in menu view:
                            // use as OK (Enter) key
                            // dont use menu key here (use it in onKeyUp)
                            return true;
                        } else {
                            // if on map view:
                            // volume UP
                            //s = java.lang.String.valueOf((char) 1);
                            return true;
                        }
                    case KeyEvent.KEYCODE_SEARCH:
                        /* Handle event in Main Activity if map is shown */
                        if (in_map) {
                            return false;
                        }

                        s = String.valueOf((char) 19);
                        break;
                    case KeyEvent.KEYCODE_BACK:
                        s = String.valueOf((char) 27);
                        break;
                    case KeyEvent.KEYCODE_CALL:
                        s = String.valueOf((char) 3);
                        break;
                    case KeyEvent.KEYCODE_VOLUME_UP:
                        if (!in_map) {
                            // if in menu view:
                            // use as UP key
                            s = String.valueOf((char) 16);
                        } else {
                            // if on map view:
                            // volume UP
                            //s = java.lang.String.valueOf((char) 21);
                            return false;
                        }
                        break;
                    case KeyEvent.KEYCODE_VOLUME_DOWN:
                        if (!in_map) {
                            // if in menu view:
                            // use as DOWN key
                            s = String.valueOf((char) 14);
                        } else {
                            // if on map view:
                            // volume DOWN
                            //s = java.lang.String.valueOf((char) 4);
                            return false;
                        }
                        break;
                    case KeyEvent.KEYCODE_DPAD_CENTER:
                        s = String.valueOf((char) 13);
                        break;
                    case KeyEvent.KEYCODE_DPAD_DOWN:
                        s = String.valueOf((char) 14);
                        break;
                    case KeyEvent.KEYCODE_DPAD_LEFT:
                        s = String.valueOf((char) 2);
                        break;
                    case KeyEvent.KEYCODE_DPAD_RIGHT:
                        s = String.valueOf((char) 6);
                        break;
                    case KeyEvent.KEYCODE_DPAD_UP:
                        s = String.valueOf((char) 16);
                        break;
                }
            } else if (i == 10) {
                s = java.lang.String.valueOf((char) 13);
            }

            if (s != null) {
                KeypressCallback(KeypressCallbackID, s);
            }
            return true;
        }

        @Override
        public boolean onKeyUp(int keyCode, KeyEvent event) {
            int i;
            String s = null;
            i = event.getUnicodeChar();

            if (i == 0) {
                switch (keyCode) {
                    case KeyEvent.KEYCODE_VOLUME_UP:
                        return (!in_map);
                    case KeyEvent.KEYCODE_VOLUME_DOWN:
                        return (!in_map);
                    case KeyEvent.KEYCODE_SEARCH:
                        /* Handle event in Main Activity if map is shown */
                        if (in_map) {
                            return false;
                        }
                        break;
                    case KeyEvent.KEYCODE_BACK:
                        if (Navit.show_soft_keyboard_now_showing) {
                            Navit.show_soft_keyboard_now_showing = false;
                        }
                        //s = java.lang.String.valueOf((char) 27);
                        return true;
                    case KeyEvent.KEYCODE_MENU:
                        if (!in_map) {
                            if (Navit.show_soft_keyboard_now_showing) {
                                // if soft keyboard showing on screen, dont use menu button as select key
                            } else {
                                // if in menu view:
                                // use as OK (Enter) key
                                s = String.valueOf((char) 13);
                            }
                        } else {
                            // if on map view:
                            // volume UP
                            //s = java.lang.String.valueOf((char) 1);
                            return false;
                        }
                        break;
                }
            } else if (i != 10) {
                s = java.lang.String.valueOf((char) i);
            }

            if (s != null) {
                KeypressCallback(KeypressCallbackID, s);
            }
            return true;
        }

        @Override
        public boolean onKeyMultiple(int keyCode, int count, KeyEvent event) {
            String s;
            if (keyCode == KeyEvent.KEYCODE_UNKNOWN) {
                s = event.getCharacters();
                KeypressCallback(KeypressCallbackID, s);
                return true;
            }
            return super.onKeyMultiple(keyCode, count, event);
        }

        @Override
        public boolean onTrackballEvent(MotionEvent event) {
            String s = null;
            if (event.getAction() == android.view.MotionEvent.ACTION_DOWN) {
                s = java.lang.String.valueOf((char) 13);
            }
            if (event.getAction() == android.view.MotionEvent.ACTION_MOVE) {
                trackball_x += event.getX();
                trackball_y += event.getY();
                if (trackball_x <= -1) {
                    s = java.lang.String.valueOf((char) 2);
                    trackball_x += 1;
                }
                if (trackball_x >= 1) {
                    s = java.lang.String.valueOf((char) 6);
                    trackball_x -= 1;
                }
                if (trackball_y <= -1) {
                    s = java.lang.String.valueOf((char) 16);
                    trackball_y += 1;
                }
                if (trackball_y >= 1) {
                    s = java.lang.String.valueOf((char) 14);
                    trackball_y -= 1;
                }
            }
            if (s != null) {
                KeypressCallback(KeypressCallbackID, s);
            }
            return true;
        }

        public void run() {
            if (in_map && touch_mode == PRESSED) {
                do_longpress_action();
                touch_mode = NONE;
            }
        }

    }

    private class SystemBarTintView extends View {

        public SystemBarTintView(Context context) {
            super(context);
            this.setBackgroundColor(bgcolor);
        }

    }

    public NavitGraphics(final Activity activity, NavitGraphics parent, int x, int y, int w, int h,
            int wraparound, int use_camera) {
        if (parent == null) {
            this.activity = (Navit) activity;
            view = new NavitView(activity);
            //activity.registerForContextMenu(view);
            view.setClickable(false);
            view.setFocusable(true);
            view.setFocusableInTouchMode(true);
            view.setKeepScreenOn(true);
            relativelayout = new RelativeLayout(activity);
            if (use_camera != 0) {
                SetCamera(use_camera);
            }
            relativelayout.addView(view);

            /* The navigational and status bar tinting code is meaningful only on API19+ */
            if (Build.VERSION.SDK_INT >= 19) {
                frameLayout = new FrameLayout(activity);
                frameLayout.addView(relativelayout);
                leftTintView = new SystemBarTintView(activity);
                rightTintView = new SystemBarTintView(activity);
                topTintView = new SystemBarTintView(activity);
                bottomTintView = new SystemBarTintView(activity);
                frameLayout.addView(leftTintView);
                frameLayout.addView(rightTintView);
                frameLayout.addView(topTintView);
                frameLayout.addView(bottomTintView);
                activity.setContentView(frameLayout);
            } else {
                activity.setContentView(relativelayout);
            }

            view.requestFocus();
        } else {
            draw_bitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
            bitmap_w = w;
            bitmap_h = h;
            pos_x = x;
            pos_y = y;
            pos_wraparound = wraparound;
            draw_canvas = new Canvas(draw_bitmap);
            parent.overlays.add(this);
        }
        parent_graphics = parent;
    }

    public enum msg_type {
        CLB_ZOOM_IN, CLB_ZOOM_OUT, CLB_REDRAW, CLB_MOVE, CLB_BUTTON_UP, CLB_BUTTON_DOWN, CLB_SET_DESTINATION,
        CLB_SET_DISPLAY_DESTINATION, CLB_CALL_CMD, CLB_COUNTRY_CHOOSER, CLB_LOAD_MAP, CLB_UNLOAD_MAP, CLB_DELETE_MAP
    }

    static private final msg_type[] msg_values = msg_type.values();

    public final Handler    callback_handler    = new Handler() {
        public void handleMessage(Message msg) {
            switch (msg_values[msg.what]) {
                case CLB_ZOOM_IN:
                    CallbackMessageChannel(1, "");
                    break;
                case CLB_ZOOM_OUT:
                    CallbackMessageChannel(2, "");
                    break;
                case CLB_MOVE:
                    MotionCallback(MotionCallbackID, msg.getData().getInt("x"), msg.getData().getInt("y"));
                    break;
                case CLB_SET_DESTINATION:
                    String lat = Float.toString(msg.getData().getFloat("lat"));
                    String lon = Float.toString(msg.getData().getFloat("lon"));
                    String q = msg.getData().getString(("q"));
                    CallbackMessageChannel(3, lat + "#" + lon + "#" + q);
                    break;
                case CLB_SET_DISPLAY_DESTINATION:
                    int x = msg.arg1;
                    int y = msg.arg2;
                    CallbackMessageChannel(4, "" + x + "#" + y);
                    break;
                case CLB_CALL_CMD:
                    String cmd = msg.getData().getString(("cmd"));
                    CallbackMessageChannel(5, cmd);
                    break;
                case CLB_BUTTON_UP:
                    ButtonCallback(ButtonCallbackID, 0, 1, msg.getData().getInt("x"), msg.getData().getInt("y")); // up
                    break;
                case CLB_BUTTON_DOWN:
                    // down
                    ButtonCallback(ButtonCallbackID, 1, 1, msg.getData().getInt("x"), msg.getData().getInt("y"));
                    break;
                case CLB_COUNTRY_CHOOSER:
                    break;
                case CLB_LOAD_MAP:
                    CallbackMessageChannel(6, msg.getData().getString(("title")));
                    break;
                case CLB_DELETE_MAP:
                    File toDelete = new File(msg.getData().getString(("title")));
                    toDelete.delete();
                    //fallthrough
                case CLB_UNLOAD_MAP:
                    CallbackMessageChannel(7, msg.getData().getString(("title")));
                    break;
            }
        }
    };

    public native void SizeChangedCallback(int id, int x, int y);

    public native void PaddingChangedCallback(int id, int left, int right, int top, int bottom);

    public native void KeypressCallback(int id, String s);

    public native int CallbackMessageChannel(int i, String s);

    public native void ButtonCallback(int id, int pressed, int button, int x, int y);

    public native void MotionCallback(int id, int x, int y);

    public native String GetDefaultCountry(int id, String s);

    public static native String[][] GetAllCountries();

    private Canvas  draw_canvas;
    private Bitmap  draw_bitmap;
    private int SizeChangedCallbackID;
    private int PaddingChangedCallbackID;
    private int ButtonCallbackID;
    private int MotionCallbackID;
    private int KeypressCallbackID;

    /**
     * @brief Adjust views used to tint navigation and status bars.
     *
     * This method is called from handleResize.
     *
     * It (re-)evaluates if and where the navigation bar is going to be shown, and calculates the
     * padding for objects which should not be obstructed.
     *
     */
    private void adjustSystemBarsTintingViews() {
        /* hide tint bars during update to prevent ugly effects */
        leftTintView.setVisibility(View.GONE);
        rightTintView.setVisibility(View.GONE);
        topTintView.setVisibility(View.GONE);
        bottomTintView.setVisibility(View.GONE);

        frameLayout.post(new Runnable() {
            @Override
            public void run() {
                FrameLayout.LayoutParams leftLayoutParams = new FrameLayout.LayoutParams(padding_left,
                        LayoutParams.MATCH_PARENT, Gravity.BOTTOM | Gravity.LEFT);
                leftTintView.setLayoutParams(leftLayoutParams);
                Log.d(TAG, String.format("leftTintView: width=%d height=%d",
                        leftTintView.getWidth(), leftTintView.getHeight()));

                FrameLayout.LayoutParams rightLayoutParams = new FrameLayout.LayoutParams(padding_right,
                        LayoutParams.MATCH_PARENT, Gravity.BOTTOM | Gravity.RIGHT);
                rightTintView.setLayoutParams(rightLayoutParams);
                Log.d(TAG, String.format("rightTintView: width=%d height=%d",
                        rightTintView.getWidth(), rightTintView.getHeight()));

                FrameLayout.LayoutParams topLayoutParams = new FrameLayout.LayoutParams(LayoutParams.MATCH_PARENT,
                        padding_top, Gravity.TOP);
                /* Prevent horizontal and vertical tint views from overlapping */
                topLayoutParams.setMargins(padding_left, 0, padding_right, 0);
                topTintView.setLayoutParams(topLayoutParams);
                Log.d(TAG, String.format("topTintView: width=%d height=%d",
                        topTintView.getWidth(), topTintView.getHeight()));

                FrameLayout.LayoutParams bottomLayoutParams = new FrameLayout.LayoutParams(LayoutParams.MATCH_PARENT,
                        padding_bottom, Gravity.BOTTOM);
                /* Prevent horizontal and vertical tint views from overlapping */
                bottomLayoutParams.setMargins(padding_left, 0, padding_right, 0);
                bottomTintView.setLayoutParams(bottomLayoutParams);
                Log.d(TAG, String.format("bottomTintView: width=%d height=%d",
                        bottomTintView.getWidth(), bottomTintView.getHeight()));

                /* show tint bars again */
                leftTintView.setVisibility(View.VISIBLE);
                rightTintView.setVisibility(View.VISIBLE);
                topTintView.setVisibility(View.VISIBLE);
                bottomTintView.setVisibility(View.VISIBLE);
            }
        });

        PaddingChangedCallback(PaddingChangedCallbackID, padding_left, padding_top, padding_right, padding_bottom);
    }

    /**
     * @brief Handles resize events.
     *
     * This method is called whenever the main View is resized in any way. This is the case when its
     * {@code onSizeChanged()} event handler fires or when toggling Fullscreen mode.
     *
     */
    @TargetApi(23)
    public void handleResize(int w, int h) {
        if (this.parent_graphics != null) {
            this.parent_graphics.handleResize(w, h);
        } else {
            Log.d(TAG, String.format("handleResize w=%d h=%d", w, h));

            /* Fallback if we can't determine padding: assume 0 all around */
            padding_left = 0;
            padding_right = 0;
            padding_top = 0;
            padding_bottom = 0;

            if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
                /* On API 23+ we can query window insets to determine the area which is obscured by the system bars. */
                if (view == null) {
                    Log.e(TAG, "view is null!");
                } else {
                    Log.e(TAG, String.format("view w=%d h=%d x=%.0f y=%.0f",
                            view.getWidth(), view.getHeight(), view.getX(), view.getY()));
                    if (view.getRootWindowInsets() == null)
                        Log.e(TAG, "No root window insets");
                    else {
                        Log.e(TAG, String.format("RootWindowInsets left=%d right=%d top=%d bottom=%d",
                                view.getRootWindowInsets().getSystemWindowInsetLeft(),
                                view.getRootWindowInsets().getSystemWindowInsetRight(),
                                view.getRootWindowInsets().getSystemWindowInsetTop(),
                                view.getRootWindowInsets().getSystemWindowInsetBottom()));
                        padding_left = view.getRootWindowInsets().getSystemWindowInsetLeft();
                        padding_right = view.getRootWindowInsets().getSystemWindowInsetRight();
                        padding_top = view.getRootWindowInsets().getSystemWindowInsetTop();
                        padding_bottom = view.getRootWindowInsets().getSystemWindowInsetBottom();
                    }
                }
            } else {
                /*
                 * Android 4.x does not support window insets at all, and Android 5.x does not support root window
                 * insets, forcing us to make an educated guess:
                 *
                 * Status and navigation bar sizes are platform defaults and do not change with rotation, but we have
                 * to figure out which ones apply.
                 *
                 * The status bar is always visible unless we are in fullscreen mode.
                 *
                 * The navigation bar is shown on devices that report they have no physical menu button. This seems to
                 * work even on devices that allow disabling the physical buttons (and use the navigation bar, in which
                 * case they report no physical menu button is available; tested with a OnePlus One running CyanogenMod).
                 *
                 * If shown, the navigation bar may appear on the side or at the bottom. The logic to determine this is
                 * taken from AOSP RenderSessionImpl.findNavigationBar()
                 * platform/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/RenderSessionImpl.java
                 */
                Resources resources = view.getResources();
                int shid = resources.getIdentifier("status_bar_height", "dimen", "android");
                int adhid = resources.getIdentifier("action_bar_default_height", "dimen", "android");
                int nhid = resources.getIdentifier("navigation_bar_height", "dimen", "android");
                int nhlid = resources.getIdentifier("navigation_bar_height_landscape", "dimen", "android");
                int nwid = resources.getIdentifier("navigation_bar_width", "dimen", "android");
                int status_bar_height = (shid > 0) ? resources.getDimensionPixelSize(shid) : 0;
                int action_bar_default_height = (adhid > 0) ? resources.getDimensionPixelSize(adhid) : 0;
                int navigation_bar_height = (nhid > 0) ? resources.getDimensionPixelSize(nhid) : 0;
                int navigation_bar_height_landscape = (nhlid > 0) ? resources.getDimensionPixelSize(nhlid) : 0;
                int navigation_bar_width = (nwid > 0) ? resources.getDimensionPixelSize(nwid) : 0;
                Log.d(TAG, String.format(
                        "status_bar_height=%d, action_bar_default_height=%d, navigation_bar_height=%d, "
                                + "navigation_bar_height_landscape=%d, navigation_bar_width=%d",
                                status_bar_height, action_bar_default_height, navigation_bar_height,
                                navigation_bar_height_landscape, navigation_bar_width));

                if (activity == null) {
                    Log.w(TAG, "Main Activity is not a Navit instance, cannot update padding");
                } else if (frameLayout != null) {
                    /* frameLayout is only created on platforms supporting navigation and status bar tinting */

                    Navit navit = activity;
                    boolean isStatusShowing = !navit.isFullscreen;
                    boolean isNavShowing = !ViewConfigurationCompat.hasPermanentMenuKey(ViewConfiguration.get(navit));
                    Log.d(TAG, String.format("isStatusShowing=%b isNavShowing=%b", isStatusShowing, isNavShowing));

                    boolean isLandscape = (navit.getResources().getConfiguration().orientation
                            == Configuration.ORIENTATION_LANDSCAPE);
                    boolean isNavAtBottom = (!isLandscape)
                            || (navit.getResources().getConfiguration().smallestScreenWidthDp >= 600);
                    Log.d(TAG, String.format("isNavAtBottom=%b (Configuration.smallestScreenWidthDp=%d, isLandscape=%b)",
                            isNavAtBottom, navit.getResources().getConfiguration().smallestScreenWidthDp, isLandscape));

                    padding_left = 0;
                    padding_top = isStatusShowing ? status_bar_height : 0;
                    padding_right = (isNavShowing && !isNavAtBottom) ? navigation_bar_width : 0;
                    padding_bottom = (!(isNavShowing && isNavAtBottom)) ? 0 : (
                            isLandscape ? navigation_bar_height_landscape : navigation_bar_height);
                }
            }

            Log.d(TAG, String.format("Padding left=%d top=%d right=%d bottom=%d",
                    padding_left, padding_top, padding_right, padding_bottom));

            adjustSystemBarsTintingViews();

            draw_bitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
            draw_canvas = new Canvas(draw_bitmap);
            bitmap_w = w;
            bitmap_h = h;
            SizeChangedCallback(SizeChangedCallbackID, w, h);
        }
    }

    /**
     * @brief Returns whether the device has a hardware menu button.
     *
     * Only Android versions starting with ICS (API version 14) support the API call to detect the presence of a
     * Menu button. On earlier Android versions, the following assumptions will be made: On API levels up to 10,
     * this method will always return {@code true}, as these Android versions relied on devices having a physical
     * Menu button. On API levels 11 through 13 (Honeycomb releases), this method will always return
     * {@code false}, as Honeycomb was a tablet-only release and did not require devices to have a Menu button.
     *
     * Note that this method is not aware of non-standard mechanisms on some customized builds of Android. For
     * example, CyanogenMod has an option to add a menu button to the navigation bar. Even with that option,
     * this method will still return `false`.
     */
    public boolean hasMenuButton() {
        if (Build.VERSION.SDK_INT <= 10) {
            return true;
        } else {
            if (Build.VERSION.SDK_INT <= 13) {
                return false;
            } else {
                return ViewConfiguration.get(activity.getApplication()).hasPermanentMenuKey();
            }
        }
    }

    public void setSizeChangedCallback(int id) {
        SizeChangedCallbackID = id;
    }

    public void setPaddingChangedCallback(int id) {
        PaddingChangedCallbackID = id;
    }

    public void setButtonCallback(int id) {
        ButtonCallbackID = id;
    }

    public void setMotionCallback(int id) {
        MotionCallbackID = id;
        if (activity != null) {
            activity.setMotionCallback(id, this);
        }
    }

    public void setKeypressCallback(int id) {
        KeypressCallbackID = id;
        // set callback id also in main intent (for menus)
        if (activity != null) {
            activity.setKeypressCallback(id, this);
        }
    }


    protected void draw_polyline(Paint paint, int[] c) {
        paint.setStrokeWidth(c[0]);
        paint.setARGB(c[1],c[2],c[3],c[4]);
        paint.setStyle(Paint.Style.STROKE);
        //paint.setAntiAlias(true);
        //paint.setStrokeWidth(0);
        int ndashes = c[5];
        float[] intervals = new float[ndashes + (ndashes % 2)];
        for (int i = 0; i < ndashes; i++) {
            intervals[i] = c[6 + i];
        }

        if ((ndashes % 2) == 1) {
            intervals[ndashes] = intervals[ndashes - 1];
        }

        if (ndashes > 0) {
            paint.setPathEffect(new android.graphics.DashPathEffect(intervals,0.0f));
        }

        Path path = new Path();
        path.moveTo(c[6 + ndashes], c[7 + ndashes]);
        for (int i = 8 + ndashes; i < c.length; i += 2) {
            path.lineTo(c[i], c[i + 1]);
        }
        //global_path.close();
        draw_canvas.drawPath(path, paint);
        paint.setPathEffect(null);
    }

    protected void draw_polygon(Paint paint, int[] c) {
        paint.setStrokeWidth(c[0]);
        paint.setARGB(c[1],c[2],c[3],c[4]);
        paint.setStyle(Paint.Style.FILL);
        //paint.setAntiAlias(true);
        //paint.setStrokeWidth(0);
        Path path = new Path();
        path.moveTo(c[5], c[6]);
        for (int i = 7; i < c.length; i += 2) {
            path.lineTo(c[i], c[i + 1]);
        }
        //global_path.close();
        draw_canvas.drawPath(path, paint);
    }

    protected void draw_rectangle(Paint paint, int x, int y, int w, int h) {
        Rect r = new Rect(x, y, x + w, y + h);
        paint.setStyle(Paint.Style.FILL);
        paint.setAntiAlias(true);
        //paint.setStrokeWidth(0);
        draw_canvas.drawRect(r, paint);
    }

    protected void draw_circle(Paint paint, int x, int y, int r) {
        paint.setStyle(Paint.Style.STROKE);
        draw_canvas.drawCircle(x, y, r / 2, paint);
    }

    protected void draw_text(Paint paint, int x, int y, String text, int size, int dx, int dy, int bgcolor) {
        int oldcolor = paint.getColor();
        Path path = null;

        paint.setTextSize(size / 15);
        paint.setStyle(Paint.Style.FILL);

        if (dx != 0x10000 || dy != 0) {
            path = new Path();
            path.moveTo(x, y);
            path.rLineTo(dx, dy);
            paint.setTextAlign(android.graphics.Paint.Align.LEFT);
        }

        if (bgcolor != 0) {
            paint.setStrokeWidth(3);
            paint.setColor(bgcolor);
            paint.setStyle(Paint.Style.STROKE);
            if (path == null) {
                draw_canvas.drawText(text, x, y, paint);
            } else {
                draw_canvas.drawTextOnPath(text, path, 0, 0, paint);
            }
            paint.setStyle(Paint.Style.FILL);
            paint.setColor(oldcolor);
        }

        if (path == null) {
            draw_canvas.drawText(text, x, y, paint);
        } else {
            draw_canvas.drawTextOnPath(text, path, 0, 0, paint);
        }
        paint.clearShadowLayer();
    }

    protected void draw_image(Paint paint, int x, int y, Bitmap bitmap) {
        draw_canvas.drawBitmap(bitmap, x, y, null);
    }

    /* takes an image and draws it on the screen as a prerendered maptile
     *
     *
     *
     * @param paint     Paint object used to draw the image
     * @param count     the number of points specified
     * @param p0x and p0y   specifying the top left point
     * @param p1x and p1y   specifying the top right point
     * @param p2x and p2y   specifying the bottom left point, not yet used but kept
     *                      for compatibility with the linux port
     * @param bitmap    Bitmap object holding the image to draw
     *
     * TODO make it work with 4 points specified to make it work for 3D mapview, so it can be used
     *      for small but very detailed maps as well as for large maps with very little detail but large
     *      coverage.
     * TODO make it work with rectangular tiles as well ?
     */
    protected void draw_image_warp(Paint paint, int count, int p0x, int p0y, int p1x, int p1y, int p2x, int p2y,
            Bitmap bitmap) {

        float width;
        float scale;
        float deltaY;
        float deltaX;
        float angle;
        Matrix matrix;

        if (count == 3) {
            matrix = new Matrix();
            deltaX = p1x - p0x;
            deltaY = p1y - p0y;
            width = (float) (Math.sqrt((deltaX * deltaX) + (deltaY * deltaY)));
            angle = (float) (Math.atan2(deltaY, deltaX) * 180d / Math.PI);
            scale = width / bitmap.getWidth();
            matrix.preScale(scale, scale);
            matrix.postTranslate(p0x, p0y);
            matrix.postRotate(angle, p0x, p0y);
            draw_canvas.drawBitmap(bitmap, matrix, paint);
        }
    }

    /* These constants must be synchronized with enum draw_mode_num in graphics.h. */
    private static final int draw_mode_begin = 0;
    private static final int draw_mode_end = 1;

    protected void draw_mode(int mode) {
        if (mode == draw_mode_end) {
            if (parent_graphics == null) {
                view.invalidate();
            } else {
                parent_graphics.view.invalidate(get_rect());
            }
        }
        if (mode == draw_mode_begin && parent_graphics != null) {
            draw_bitmap.eraseColor(0);
        }

    }

    protected void draw_drag(int x, int y) {
        pos_x = x;
        pos_y = y;
    }

    protected void overlay_disable(int disable) {
        Log.d(TAG,"overlay_disable: " + disable + "Parent: " + (parent_graphics != null));
        // assume we are NOT in map view mode!
        if (parent_graphics == null) {
            in_map = (disable == 0);
        }
        if (overlay_disabled != disable) {
            overlay_disabled = disable;
            if (parent_graphics != null) {
                parent_graphics.view.invalidate(get_rect());
            }
        }
    }

    protected void overlay_resize(int x, int y, int w, int h, int wraparound) {
        draw_bitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
        bitmap_w = w;
        bitmap_h = h;
        pos_x = x;
        pos_y = y;
        pos_wraparound = wraparound;
        draw_canvas.setBitmap(draw_bitmap);
    }

    public static native String CallbackLocalizedString(String s);
}