Android: How to switch between Activities like switching desktops in Home app?
问题 I'm developing an Android Application that has three very similar Activities. I would like the user to be able to switch between them by swiping left and right on the screen. This is how I managed that up to now: I followed this post Then I changed the method onSwipe() in this way: @Override public void onSwipe(int direction) { Intent intent = new Intent(); switch (direction) { case SimpleGestureFilter.SWIPE_RIGHT: intent.setClass(this, TodoTodaySheet.class); break; case SimpleGestureFilter