Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android實現推拉門式的立體特效滑動菜單

Android實現推拉門式的立體特效滑動菜單

編輯:Android開發實例

在上一篇文章中,我們學習了Camera的基本用法,並借助它們編寫了一個例子,實現了類似於API Demos裡的圖片中軸旋轉功能。不過那個例子的核心代碼是來自於API Demos中帶有的Rotate3dAnimation這個類,是它幫助我們完成了所有的三維旋轉操作,所有Matrix和Camera相關的代碼也是封裝在這個類中。

這樣說來的話,大家心裡會不會癢癢的呢?雖然學習了Camera的用法,但卻沒有按照自己的理解來實現一套非常炫酷的3D效果。不要著急,今天我就帶著大家一起來實現一種3D推拉門式的滑動菜單,而且完全不會借助任何API Demos裡面的代碼。

當然如果你還不是很了解Camera的使用方式,可以先去閱讀我的上一篇文章 http://www.fengfly.com/plus/view-215100-1.html 。

關於滑動菜單的文章我也已經寫過好幾篇了,相信看過的朋友對滑動菜單的實現方式應該都已經比較熟悉了,那麼本篇文章的重點就在於,如何在傳統滑動菜單的基礎上加入推拉門式的立體效果。還不了解滑動菜單如何實現的朋友,可以去翻一翻我之前的文章。

下面還是回到正題,首先來講一下這次的實現原理吧,其實傳統的滑動菜單功能就是把菜單部分放在了下面,主布局放在了上面,然後根據手指滑動的距離來偏移主布局,讓菜單部分得以顯示出來就行了。不過我們這次既然要做推拉門式的立體效果,就需要將傳統的思維稍微轉變一下,可以先讓菜單部分隱藏掉,但卻復制一個菜單的鏡像並生成一張圖片,然後在手指滑動的時候對這張圖片進行三維操作,讓它產生推拉門式的效果,等滑動操作結束的時候,才讓真正的菜單顯示出來,然後將這個圖片隱藏。原理示意圖如下所示:

                                      
 

那麼下面我們就開始動手實現吧,首先新建一個Android項目,起名叫做ThreeDSlidingLayoutDemo。
 

然後新建一個Image3dView類繼承自View,用於生成鏡像圖片,以及完成三維操作,代碼如下所示:

  1. public class Image3dView extends View {  
  2.  
  3.     /**  
  4.      * 源視圖,用於生成圖片對象。  
  5.      */ 
  6.     private View sourceView;  
  7.  
  8.     /**  
  9.      * 根據傳入的源視圖生成的圖片對象。  
  10.      */ 
  11.     private Bitmap sourceBitmap;  
  12.  
  13.     /**  
  14.      * 源視圖的寬度。  
  15.      */ 
  16.     private float sourceWidth;  
  17.  
  18.     /**  
  19.      * Matrix對象,用於對圖片進行矩陣操作。  
  20.      */ 
  21.     private Matrix matrix = new Matrix();  
  22.  
  23.     /**  
  24.      * Camera對象,用於對圖片進行三維操作。  
  25.      */ 
  26.     private Camera camera = new Camera();  
  27.  
  28.     /**  
  29.      * Image3dView的構造函數  
  30.      *   
  31.      * @param context  
  32.      * @param attrs  
  33.      */ 
  34.     public Image3dView(Context context, AttributeSet attrs) {  
  35.         super(context, attrs);  
  36.     }  
  37.  
  38.     /**  
  39.      * 提供外部接口,允許向Image3dView傳入源視圖。  
  40.      *   
  41.      * @param view  
  42.      *            傳入的源視圖  
  43.      */ 
  44.     public void setSourceView(View view) {  
  45.         sourceView = view;  
  46.         sourceWidth = sourceView.getWidth();  
  47.     }  
  48.  
  49.     /**  
  50.      * 清除掉緩存的圖片對象。  
  51.      */ 
  52.     public void clearSourceBitmap() {  
  53.         if (sourceBitmap != null) {  
  54.             sourceBitmap = null;  
  55.         }  
  56.     }  
  57.  
  58.     @Override 
  59.     protected void onDraw(Canvas canvas) {  
  60.         super.onDraw(canvas);  
  61.         if (sourceBitmap == null) {  
  62.             getSourceBitmap();  
  63.         }  
  64.         // 計算圖片需要旋轉的角度  
  65.         float degree = 90 - (90 / sourceWidth) * getWidth();  
  66.         camera.save();  
  67.         camera.rotateY(degree);  
  68.         camera.getMatrix(matrix);  
  69.         camera.restore();  
  70.         // 將旋轉的中心點移動到屏幕左邊緣的中間位置  
  71.         matrix.preTranslate(0, -getHeight() / 2);  
  72.         matrix.postTranslate(0, getHeight() / 2);  
  73.         canvas.drawBitmap(sourceBitmap, matrix, null);  
  74.     }  
  75.  
  76.     /**  
  77.      * 獲取源視圖對應的圖片對象。  
  78.      */ 
  79.     private void getSourceBitmap() {  
  80.         if (sourceView != null) {  
  81.             sourceView.setDrawingCacheEnabled(true);  
  82.             sourceView.layout(0, 0, sourceView.getWidth(), sourceView.getHeight());  
  83.             sourceView.buildDrawingCache();  
  84.             sourceBitmap = sourceView.getDrawingCache();  
  85.         }  
  86.     }  
  87.  
  88. }  

可以看到,Image3dView中提供了一個setSourceView()方法,用於傳遞源視圖進來,我們稍後復制鏡像就是對它進行復制。然後在onDraw()方法裡對sourceBitmap進行判斷,如果為空,則去調用getSourceBitmap()方法來生成一張鏡像圖片,getSourceBitmap()方法的細節大家自己去看。在獲得了鏡像圖片之後,接下來就是要計算圖片的旋轉角度了,這裡根據Image3dView當前的寬度和源視圖的總寬度進行對比,按比例算出旋轉的角度。然後調用Camera的rotateY()方法,讓圖片團練Y軸進行旋轉,並將旋轉的中心點移動到屏幕左邊緣的中間位置,這幾行代碼我們在上篇文章中已經見過了,算是挺熟悉了吧!最後調用Canvas的drawBitmap()方法把圖片繪制出來。

 

完成了Image3dView之後,接著我們要開始編寫滑動菜單部分的代碼,其實這次的代碼和之前的滑動菜單代碼大同小異,看過我前面文章的朋友,這次理解起來一定會輕而易舉。新建ThreeDSlidingLayout類,代碼如下所示:

  1. public class ThreeDSlidingLayout extends RelativeLayout implements OnTouchListener {  
  2.  
  3.     /**  
  4.      * 滾動顯示和隱藏左側布局時,手指滑動需要達到的速度。  
  5.      */ 
  6.     public static final int SNAP_VELOCITY = 200;  
  7.  
  8.     /**  
  9.      * 滑動狀態的一種,表示未進行任何滑動。  
  10.      */ 
  11.     public static final int DO_NOTHING = 0;  
  12.  
  13.     /**  
  14.      * 滑動狀態的一種,表示正在滑出左側菜單。  
  15.      */ 
  16.     public static final int SHOW_MENU = 1;  
  17.  
  18.     /**  
  19.      * 滑動狀態的一種,表示正在隱藏左側菜單。  
  20.      */ 
  21.     public static final int HIDE_MENU = 2;  
  22.  
  23.     /**  
  24.      * 記錄當前的滑動狀態  
  25.      */ 
  26.     private int slideState;  
  27.  
  28.     /**  
  29.      * 屏幕寬度值。  
  30.      */ 
  31.     private int screenWidth;  
  32.  
  33.     /**  
  34.      * 右側布局最多可以滑動到的左邊緣。  
  35.      */ 
  36.     private int leftEdge = 0;  
  37.  
  38.     /**  
  39.      * 右側布局最多可以滑動到的右邊緣。  
  40.      */ 
  41.     private int rightEdge = 0;  
  42.  
  43.     /**  
  44.      * 在被判定為滾動之前用戶手指可以移動的最大值。  
  45.      */ 
  46.     private int touchSlop;  
  47.  
  48.     /**  
  49.      * 記錄手指按下時的橫坐標。  
  50.      */ 
  51.     private float xDown;  
  52.  
  53.     /**  
  54.      * 記錄手指按下時的縱坐標。  
  55.      */ 
  56.     private float yDown;  
  57.  
  58.     /**  
  59.      * 記錄手指移動時的橫坐標。  
  60.      */ 
  61.     private float xMove;  
  62.  
  63.     /**  
  64.      * 記錄手指移動時的縱坐標。  
  65.      */ 
  66.     private float yMove;  
  67.  
  68.     /**  
  69.      * 記錄手機抬起時的橫坐標。  
  70.      */ 
  71.     private float xUp;  
  72.  
  73.     /**  
  74.      * 左側布局當前是顯示還是隱藏。只有完全顯示或隱藏時才會更改此值,滑動過程中此值無效。  
  75.      */ 
  76.     private boolean isLeftLayoutVisible;  
  77.  
  78.     /**  
  79.      * 是否正在滑動。  
  80.      */ 
  81.     private boolean isSliding;  
  82.  
  83.     /**  
  84.      * 是否已加載過一次layout,這裡onLayout中的初始化只需加載一次  
  85.      */ 
  86.     private boolean loadOnce;  
  87.  
  88.     /**  
  89.      * 左側布局對象。  
  90.      */ 
  91.     private View leftLayout;  
  92.  
  93.     /**  
  94.      * 右側布局對象。  
  95.      */ 
  96.     private View rightLayout;  
  97.  
  98.     /**  
  99.      * 在滑動過程中展示的3D視圖  
  100.      */ 
  101.     private Image3dView image3dView;  
  102.  
  103.     /**  
  104.      * 用於監聽側滑事件的View。  
  105.      */ 
  106.     private View mBindView;  
  107.  
  108.     /**  
  109.      * 左側布局的參數,通過此參數來重新確定左側布局的寬度,以及更改leftMargin的值。  
  110.      */ 
  111.     private MarginLayoutParams leftLayoutParams;  
  112.  
  113.     /**  
  114.      * 右側布局的參數,通過此參數來重新確定右側布局的寬度。  
  115.      */ 
  116.     private MarginLayoutParams rightLayoutParams;  
  117.  
  118.     /**  
  119.      * 3D視圖的參數,通過此參數來重新確定3D視圖的寬度。  
  120.      */ 
  121.     private ViewGroup.LayoutParams image3dViewParams;  
  122.  
  123.     /**  
  124.      * 用於計算手指滑動的速度。  
  125.      */ 
  126.     private VelocityTracker mVelocityTracker;  
  127.  
  128.     /**  
  129.      * 重寫SlidingLayout的構造函數,其中獲取了屏幕的寬度。  
  130.      *   
  131.      * @param context  
  132.      * @param attrs  
  133.      */ 
  134.     public ThreeDSlidingLayout(Context context, AttributeSet attrs) {  
  135.         super(context, attrs);  
  136.         WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);  
  137.         screenWidth = wm.getDefaultDisplay().getWidth();  
  138.         touchSlop = ViewConfiguration.get(context).getScaledTouchSlop();  
  139.     }  
  140.  
  141.     /**  
  142.      * 綁定監聽側滑事件的View,即在綁定的View進行滑動才可以顯示和隱藏左側布局。  
  143.      *   
  144.      * @param bindView  
  145.      *            需要綁定的View對象。  
  146.      */ 
  147.     public void setScrollEvent(View bindView) {  
  148.         mBindView = bindView;  
  149.         mBindView.setOnTouchListener(this);  
  150.     }  
  151.  
  152.     /**  
  153.      * 將屏幕滾動到左側布局界面,滾動速度設定為10.  
  154.      */ 
  155.     public void scrollToLeftLayout() {  
  156.         image3dView.clearSourceBitmap();  
  157.         new ScrollTask().execute(-10);  
  158.     }  
  159.  
  160.     /**  
  161.      * 將屏幕滾動到右側布局界面,滾動速度設定為-10.  
  162.      */ 
  163.     public void scrollToRightLayout() {  
  164.         image3dView.clearSourceBitmap();  
  165.         new ScrollTask().execute(10);  
  166.     }  
  167.  
  168.     /**  
  169.      * 左側布局是否完全顯示出來,或完全隱藏,滑動過程中此值無效。  
  170.      *   
  171.      * @return 左側布局完全顯示返回true,完全隱藏返回false。  
  172.      */ 
  173.     public boolean isLeftLayoutVisible() {  
  174.         return isLeftLayoutVisible;  
  175.     }  
  176.  
  177.     /**  
  178.      * 在onLayout中重新設定左側布局和右側布局的參數。  
  179.      */ 
  180.     @Override 
  181.     protected void onLayout(boolean changed, int l, int t, int r, int b) {  
  182.         super.onLayout(changed, l, t, r, b);  
  183.         if (changed && !loadOnce) {  
  184.             // 獲取左側布局對象  
  185.             leftLayout = findViewById(R.id.menu);  
  186.             leftLayoutParams = (MarginLayoutParams) leftLayout.getLayoutParams();  
  187.             rightEdge = -leftLayoutParams.width;  
  188.             // 獲取右側布局對象  
  189.             rightLayout = findViewById(R.id.content);  
  190.             rightLayoutParams = (MarginLayoutParams) rightLayout.getLayoutParams();  
  191.             rightLayoutParams.width = screenWidth;  
  192.             rightLayout.setLayoutParams(rightLayoutParams);  
  193.             // 獲取3D視圖對象  
  194.             image3dView = (Image3dView) findViewById(R.id.image_3d_view);  
  195.             // 將左側布局傳入3D視圖中作為生成源  
  196.             image3dView.setSourceView(leftLayout);  
  197.             loadOnce = true;  
  198.         }  
  199.     }  
  200.  
  201.     @Override 
  202.     public boolean onTouch(View v, MotionEvent event) {  
  203.         createVelocityTracker(event);  
  204.         switch (event.getAction()) {  
  205.         case MotionEvent.ACTION_DOWN:  
  206.             // 手指按下時,記錄按下時的橫坐標  
  207.             xDown = event.getRawX();  
  208.             yDown = event.getRawY();  
  209.             slideState = DO_NOTHING;  
  210.             break;  
  211.         case MotionEvent.ACTION_MOVE:  
  212.             // 手指移動時,對比按下時的橫坐標,計算出移動的距離,來調整右側布局的leftMargin值,從而顯示和隱藏左側布局  
  213.             xMove = event.getRawX();  
  214.             yMove = event.getRawY();  
  215.             int moveDistanceX = (int) (xMove - xDown);  
  216.             int moveDistanceY = (int) (yMove - yDown);  
  217.             checkSlideState(moveDistanceX, moveDistanceY);  
  218.             switch (slideState) {  
  219.             case SHOW_MENU:  
  220.                 rightLayoutParams.rightMargin = -moveDistanceX;  
  221.                 onSlide();  
  222.                 break;  
  223.             case HIDE_MENU:  
  224.                 rightLayoutParams.rightMargin = rightEdge - moveDistanceX;  
  225.                 onSlide();  
  226.                 break;  
  227.             default:  
  228.                 break;  
  229.             }  
  230.             break;  
  231.         case MotionEvent.ACTION_UP:  
  232.             xUp = event.getRawX();  
  233.             int upDistanceX = (int) (xUp - xDown);  
  234.             if (isSliding) {  
  235.                 // 手指抬起時,進行判斷當前手勢的意圖  
  236.                 switch (slideState) {  
  237.                 case SHOW_MENU:  
  238.                     if (shouldScrollToLeftLayout()) {  
  239.                         scrollToLeftLayout();  
  240.                     } else {  
  241.                         scrollToRightLayout();  
  242.                     }  
  243.                     break;  
  244.                 case HIDE_MENU:  
  245.                     if (shouldScrollToRightLayout()) {  
  246.                         scrollToRightLayout();  
  247.                     } else {  
  248.                         scrollToLeftLayout();  
  249.                     }  
  250.                     break;  
  251.                 default:  
  252.                     break;  
  253.                 }  
  254.             } else if (upDistanceX < touchSlop && isLeftLayoutVisible) {  
  255.                 scrollToRightLayout();  
  256.             }  
  257.             recycleVelocityTracker();  
  258.             break;  
  259.         }  
  260.         if (v.isEnabled()) {  
  261.             if (isSliding) {  
  262.                 unFocusBindView();  
  263.                 return true;  
  264.             }  
  265.             if (isLeftLayoutVisible) {  
  266.                 return true;  
  267.             }  
  268.             return false;  
  269.         }  
  270.         return true;  
  271.     }  
  272.  
  273.     /**  
  274.      * 執行滑動過程中的邏輯操作,如邊界檢查,改變偏移值,可見性檢查等。  
  275.      */ 
  276.     private void onSlide() {  
  277.         checkSlideBorder();  
  278.         rightLayout.setLayoutParams(rightLayoutParams);  
  279.         image3dView.clearSourceBitmap();  
  280.         image3dViewParams = image3dView.getLayoutParams();  
  281.         image3dViewParams.width = -rightLayoutParams.rightMargin;  
  282.         // 滑動的同時改變3D視圖的大小  
  283.         image3dView.setLayoutParams(image3dViewParams);  
  284.         // 保證在滑動過程中3D視圖可見,左側布局不可見  
  285.         showImage3dView();  
  286.     }  
  287.  
  288.     /**  
  289.      * 根據手指移動的距離,判斷當前用戶的滑動意圖,然後給slideState賦值成相應的滑動狀態值。  
  290.      *   
  291.      * @param moveDistanceX  
  292.      *            橫向移動的距離  
  293.      * @param moveDistanceY  
  294.      *            縱向移動的距離  
  295.      */ 
  296.     private void checkSlideState(int moveDistanceX, int moveDistanceY) {  
  297.         if (isLeftLayoutVisible) {  
  298.             if (!isSliding && Math.abs(moveDistanceX) >= touchSlop && moveDistanceX < 0) {  
  299.                 isSliding = true;  
  300.                 slideState = HIDE_MENU;  
  301.             }  
  302.         } else if (!isSliding && Math.abs(moveDistanceX) >= touchSlop && moveDistanceX > 0 
  303.                 && Math.abs(moveDistanceY) < touchSlop) {  
  304.             isSliding = true;  
  305.             slideState = SHOW_MENU;  
  306.         }  
  307.     }  
  308.  
  309.     /**  
  310.      * 在滑動過程中檢查左側菜單的邊界值,防止綁定布局滑出屏幕。  
  311.      */ 
  312.     private void checkSlideBorder() {  
  313.         if (rightLayoutParams.rightMargin > leftEdge) {  
  314.             rightLayoutParams.rightMargin = leftEdge;  
  315.         } else if (rightLayoutParams.rightMargin < rightEdge) {  
  316.             rightLayoutParams.rightMargin = rightEdge;  
  317.         }  
  318.     }  
  319.  
  320.     /**  
  321.      * 判斷是否應該滾動將左側布局展示出來。如果手指移動距離大於屏幕的1/2,或者手指移動速度大於SNAP_VELOCITY,  
  322.      * 就認為應該滾動將左側布局展示出來。  
  323.      *   
  324.      * @return 如果應該滾動將左側布局展示出來返回true,否則返回false。  
  325.      */ 
  326.     private boolean shouldScrollToLeftLayout() {  
  327.         return xUp - xDown > leftLayoutParams.width / 2 || getScrollVelocity() > SNAP_VELOCITY;  
  328.     }  
  329.  
  330.     /**  
  331.      * 判斷是否應該滾動將右側布局展示出來。如果手指移動距離加上leftLayoutPadding大於屏幕的1/2,  
  332.      * 或者手指移動速度大於SNAP_VELOCITY, 就認為應該滾動將右側布局展示出來。  
  333.      *   
  334.      * @return 如果應該滾動將右側布局展示出來返回true,否則返回false。  
  335.      */ 
  336.     private boolean shouldScrollToRightLayout() {  
  337.         return xDown - xUp > leftLayoutParams.width / 2 || getScrollVelocity() > SNAP_VELOCITY;  
  338.     }  
  339.  
  340.     /**  
  341.      * 創建VelocityTracker對象,並將觸摸事件加入到VelocityTracker當中。  
  342.      *   
  343.      * @param event  
  344.      *            右側布局監聽控件的滑動事件  
  345.      */ 
  346.     private void createVelocityTracker(MotionEvent event) {  
  347.         if (mVelocityTracker == null) {  
  348.             mVelocityTracker = VelocityTracker.obtain();  
  349.         }  
  350.         mVelocityTracker.addMovement(event);  
  351.     }  
  352.  
  353.     /**  
  354.      * 獲取手指在右側布局的監聽View上的滑動速度。  
  355.      *   
  356.      * @return 滑動速度,以每秒鐘移動了多少像素值為單位。  
  357.      */ 
  358.     private int getScrollVelocity() {  
  359.         mVelocityTracker.computeCurrentVelocity(1000);  
  360.         int velocity = (int) mVelocityTracker.getXVelocity();  
  361.         return Math.abs(velocity);  
  362.     }  
  363.  
  364.     /**  
  365.      * 回收VelocityTracker對象。  
  366.      */ 
  367.     private void recycleVelocityTracker() {  
  368.         mVelocityTracker.recycle();  
  369.         mVelocityTracker = null;  
  370.     }  
  371.  
  372.     /**  
  373.      * 使用可以獲得焦點的控件在滑動的時候失去焦點。  
  374.      */ 
  375.     private void unFocusBindView() {  
  376.         if (mBindView != null) {  
  377.             mBindView.setPressed(false);  
  378.             mBindView.setFocusable(false);  
  379.             mBindView.setFocusableInTouchMode(false);  
  380.         }  
  381.     }  
  382.  
  383.     /**  
  384.      * 保證此時讓左側布局不可見,3D視圖可見,從而讓滑動過程中產生3D的效果。  
  385.      */ 
  386.     private void showImage3dView() {  
  387.         if (image3dView.getVisibility() != View.VISIBLE) {  
  388.             image3dView.setVisibility(View.VISIBLE);  
  389.         }  
  390.         if (leftLayout.getVisibility() != View.INVISIBLE) {  
  391.             leftLayout.setVisibility(View.INVISIBLE);  
  392.         }  
  393.     }  
  394.  
  395.     class ScrollTask extends AsyncTask<Integer, Integer, Integer> {  
  396.  
  397.         @Override 
  398.         protected Integer doInBackground(Integer... speed) {  
  399.             int rightMargin = rightLayoutParams.rightMargin;  
  400.             // 根據傳入的速度來滾動界面,當滾動到達左邊界或右邊界時,跳出循環。  
  401.             while (true) {  
  402.                 rightMargin = rightMargin + speed[0];  
  403.                 if (rightMargin < rightEdge) {  
  404.                     rightMargin = rightEdge;  
  405.                     break;  
  406.                 }  
  407.                 if (rightMargin > leftEdge) {  
  408.                     rightMargin = leftEdge;  
  409.                     break;  
  410.                 }  
  411.                 publishProgress(rightMargin);  
  412.                 // 為了要有滾動效果產生,每次循環使線程睡眠5毫秒,這樣肉眼才能夠看到滾動動畫。  
  413.                 sleep(5);  
  414.             }  
  415.             if (speed[0] > 0) {  
  416.                 isLeftLayoutVisible = false;  
  417.             } else {  
  418.                 isLeftLayoutVisible = true;  
  419.             }  
  420.             isSliding = false;  
  421.             return rightMargin;  
  422.         }  
  423.  
  424.         @Override 
  425.         protected void onProgressUpdate(Integer... rightMargin) {  
  426.             rightLayoutParams.rightMargin = rightMargin[0];  
  427.             rightLayout.setLayoutParams(rightLayoutParams);  
  428.             image3dViewParams = image3dView.getLayoutParams();  
  429.             image3dViewParams.width = -rightLayoutParams.rightMargin;  
  430.             image3dView.setLayoutParams(image3dViewParams);  
  431.             showImage3dView();  
  432.             unFocusBindView();  
  433.         }  
  434.  
  435.         @Override 
  436.         protected void onPostExecute(Integer rightMargin) {  
  437.             rightLayoutParams.rightMargin = rightMargin;  
  438.             rightLayout.setLayoutParams(rightLayoutParams);  
  439.             image3dViewParams = image3dView.getLayoutParams();  
  440.             image3dViewParams.width = -rightLayoutParams.rightMargin;  
  441.             image3dView.setLayoutParams(image3dViewParams);  
  442.             if (isLeftLayoutVisible) {  
  443.                 // 保證在滑動結束後左側布局可見,3D視圖不可見。  
  444.                 image3dView.setVisibility(View.INVISIBLE);  
  445.                 leftLayout.setVisibility(View.VISIBLE);  
  446.             }  
  447.         }  
  448.     }  
  449.  
  450.     /**  
  451.      * 使當前線程睡眠指定的毫秒數。  
  452.      *   
  453.      * @param millis  
  454.      *            指定當前線程睡眠多久,以毫秒為單位  
  455.      */ 
  456.     private void sleep(long millis) {  
  457.         try {  
  458.             Thread.sleep(millis);  
  459.         } catch (InterruptedException e) {  
  460.             e.printStackTrace();  
  461.         }  
  462.     }  
  463. }  

代碼比較長,我還是帶著大家來理一下思路。首先在onLayout方法中,我們分別初始化了左側布局對象、右側布局對象和Image3dView對象,這三個對象稍後都要配置到Activity布局裡面的。在onLayout()方法的最後,調用了Image3dView的setSourceView()方法,並將左側布局對象傳了進去,說明我們後面就要對它進行鏡像復制。
 

 

當手指在界面上拖動來顯示左側布局的時候,就會進入到onTouch()方法中,這裡會調用checkSlideState()方法來檢查滑動的狀態,以判斷用戶是想要顯示左側布局還是隱藏左側布局,然後根據手指滑動的距離對右側布局進行偏移,就可以實現基本的滑動效果了。接下來是重點內容,這裡會根據右側布局的偏移量來改變Image3dView的寬度,當Image3dView大小發生改變時,當然會調用onDraw()方法來進行重繪,此時我們編寫的三維旋轉邏輯就可以得到執行了,於是就會產生立體的推拉門式效果。注意,在整個的滑動過程中,真正的左側布局一直都是不可見的,我們所看到的只是它的一張鏡像圖片。
 

當手指離開屏幕後,會根據當前的移動距離來決定是顯示左側布局還是隱藏左側布局,並會調用scrollToLeftLayout()方法或scrollToRightLayout()方法來完成後續的滾動操作。當整個滾動操作完成之後,才會將真正的左側布局顯示出來,再把鏡像圖片隱藏掉,這樣用戶就可以點擊左側布局上按鈕之類的東西了。
 

接著我們需要在Activity的布局文件當中去引用這個三維滑動菜單框架,打開或新建activity_main.xml作為程序的主布局文件,代碼如下所示:

  1. <com.example.slidinglayout3d.ThreeDSlidingLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  2.     xmlns:tools="http://schemas.android.com/tools" 
  3.     android:id="@+id/slidingLayout" 
  4.     android:layout_width="fill_parent" 
  5.     android:layout_height="fill_parent" > 
  6.  
  7.     <RelativeLayout 
  8.         android:id="@+id/menu" 
  9.         android:layout_width="270dip" 
  10.         android:layout_height="fill_parent" 
  11.         android:layout_alignParentLeft="true" 
  12.         android:background="#00ccff" 
  13.         android:visibility="invisible" > 
  14.  
  15.         <LinearLayout 
  16.             android:layout_width="match_parent" 
  17.             android:layout_height="wrap_content" 
  18.             android:layout_centerInParent="true" 
  19.             android:orientation="vertical" > 
  20.  
  21.             <TextView 
  22.                 android:layout_width="wrap_content" 
  23.                 android:layout_height="wrap_content" 
  24.                 android:layout_gravity="center_horizontal" 
  25.                 android:text="This is menu" 
  26.                 android:textColor="#000000" 
  27.                 android:textSize="28sp" /> 
  28.  
  29.             <Button 
  30.                 android:layout_width="wrap_content" 
  31.                 android:layout_height="wrap_content" 
  32.                 android:layout_gravity="center_horizontal" 
  33.                 android:text="Test Button" /> 
  34.         </LinearLayout> 
  35.     </RelativeLayout> 
  36.  
  37.     <LinearLayout 
  38.         android:id="@+id/content" 
  39.         android:layout_width="320dip" 
  40.         android:layout_height="fill_parent" 
  41.         android:layout_alignParentRight="true" 
  42.         android:background="#e9e9e9" 
  43.         android:orientation="vertical" 
  44.         android:visibility="visible" > 
  45.  
  46.         <Button 
  47.             android:id="@+id/menuButton" 
  48.             android:layout_width="wrap_content" 
  49.             android:layout_height="wrap_content" 
  50.             android:text="Menu" /> 
  51.  
  52.         <ListView 
  53.             android:id="@+id/contentList" 
  54.             android:layout_width="fill_parent" 
  55.             android:layout_height="fill_parent" 
  56.             android:cacheColorHint="#00000000" > 
  57.         </ListView> 
  58.     </LinearLayout> 
  59.  
  60.     <com.example.slidinglayout3d.Image3dView 
  61.         android:id="@+id/image_3d_view" 
  62.         android:layout_width="wrap_content" 
  63.         android:layout_height="wrap_content" 
  64.         android:layout_alignParentLeft="true" 
  65.         android:visibility="invisible" /> 
  66.  
  67. </com.example.slidinglayout3d.ThreeDSlidingLayout> 

可以看到,在最外層的ThreeDSlidingLayout布局裡面,我們放入了三個直接子布局,第一個RelativeLayout也就是左側布局了,裡面簡單地放了一個TextView和一個按鈕。第二個LinearLayout是右側布局,裡面放入了一個按鈕和一個ListView,都是用於顯示左側布局而准備的。第三個是Image3dView,當然是用於在滑動過程中顯示左側布局的鏡像圖片了。

 

最後,打開或新建MainActivity作為程序的主Activity,在裡面加入如下代碼:

  1. public class MainActivity extends Activity {  
  2.  
  3.     /**  
  4.      * 側滑布局對象,用於通過手指滑動將左側的菜單布局進行顯示或隱藏。  
  5.      */ 
  6.     private ThreeDSlidingLayout slidingLayout;  
  7.  
  8.     /**  
  9.      * menu按鈕,點擊按鈕展示左側布局,再點擊一次隱藏左側布局。  
  10.      */ 
  11.     private Button menuButton;  
  12.  
  13.     /**  
  14.      * 放在content布局中的ListView。  
  15.      */ 
  16.     private ListView contentListView;  
  17.  
  18.     /**  
  19.      * 作用於contentListView的適配器。  
  20.      */ 
  21.     private ArrayAdapter<String> contentListAdapter;  
  22.  
  23.     /**  
  24.      * 用於填充contentListAdapter的數據源。  
  25.      */ 
  26.     private String[] contentItems = { "Content Item 1", "Content Item 2", "Content Item 3",  
  27.             "Content Item 4", "Content Item 5", "Content Item 6", "Content Item 7",  
  28.             "Content Item 8", "Content Item 9", "Content Item 10", "Content Item 11",  
  29.             "Content Item 12", "Content Item 13", "Content Item 14", "Content Item 15",  
  30.             "Content Item 16" };  
  31.  
  32.     @Override 
  33.     protected void onCreate(Bundle savedInstanceState) {  
  34.         super.onCreate(savedInstanceState);  
  35.         setContentView(R.layout.activity_main);  
  36.         slidingLayout = (ThreeDSlidingLayout) findViewById(R.id.slidingLayout);  
  37.         menuButton = (Button) findViewById(R.id.menuButton);  
  38.         contentListView = (ListView) findViewById(R.id.contentList);  
  39.         contentListAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,  
  40.                 contentItems);  
  41.         contentListView.setAdapter(contentListAdapter);  
  42.         // 將監聽滑動事件綁定在contentListView上  
  43.         slidingLayout.setScrollEvent(contentListView);  
  44.         menuButton.setOnClickListener(new OnClickListener() {  
  45.             @Override 
  46.             public void onClick(View v) {  
  47.                 if (slidingLayout.isLeftLayoutVisible()) {  
  48.                     slidingLayout.scrollToRightLayout();  
  49.                 } else {  
  50.                     slidingLayout.scrollToLeftLayout();  
  51.                 }  
  52.             }  
  53.         });  
  54.         contentListView.setOnItemClickListener(new OnItemClickListener() {  
  55.             @Override 
  56.             public void onItemClick(AdapterView<?> parent, View view, int position, long id) {  
  57.                 String text = contentItems[position];  
  58.                 Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();  
  59.             }  
  60.         });  
  61.     }  
  62. }  

這些代碼應該都非常簡單和眼熟了吧,和以前滑動菜單中的代碼完全一樣,調用ThreeDSlidingLayout的setScrollEvent方法,將ListView作為綁定布局傳入,這樣就可以通過拖動ListView來顯示或隱藏左側布局。並且在按鈕的點擊事件裡也加入了顯示和隱藏左側布局的邏輯。
 

 

好了,這樣所有的編碼工作就已經完成了,讓我們來運行一下吧,效果如下圖所示:
 

                                                 
 

怎麼樣?效果非常炫麗吧!其實只要對Camera進行巧妙地運用,還可以編寫出很多非常精彩的特效,就看你敢不敢去發揮你的想象力了。

源碼下載,請點擊這裡
 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved