Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有三个活动,我想在触摸屏幕上的水平移动(从左到右或从右到左)时从一个活动移动到另一个活动。如何访问滑动屏幕的动作和?
尝试这个:
try { Intent newIntent = new Intent(view.getContext(), NewActivity.class); startActivityForResult(newIntent, 0); overridePendingTransition(android.R.anim.slide_in_left, android.R.anim.slide_out_right); } catch(Exception ex) { }
http://android-developers.blogspot.in/2011/08/horizontal-view-swiping-with-viewpager.html
和
http://blog.velir.com/index.php/2010/11/17/android-snapping-horizontal-scroll/