If two views share the same layout position, one cannot control which view should be in the foreground.
Perspective perspective = Perspective.createPerspective();
View alarmTableView = View.createView(StandardLayout.CENTER, MaterialIcon.REPORT_PROBLEM, "Alarm List", null);
perspective.addView(alarmTableView);
View eventTableView = View.createView(StandardLayout.CENTER, MaterialIcon.REPORT_PROBLEM, "Alarm Event Table", null);
perspective.addView(eventTableView);
eventTableView.focus(true);