《IT藍豹》高仿花田ios版標籤移動效果

來源:互聯網
上載者:User

標籤:android   gridview   android 特效   listview   menu   

高仿花田ios版標籤移動效果,長按每一個item拖動到自己想要位置後,後面位置移動補全效果 。
本項目適合研究gridview拖拽效果的朋友下載。
學習android動畫特效。
本項目主要靠DragGrid來實現,
/** 在拖動的情況 */
    private void onDrag(int x, int y , int rawx , int rawy) {
        if (dragImageView != null) {
            windowParams.alpha = 0.6f;
//            windowParams.x = rawx - itemWidth / 2;
//            windowParams.y = rawy - itemHeight / 2;
            windowParams.x = rawx - win_view_x;
            windowParams.y = rawy - win_view_y;
            windowManager.updateViewLayout(dragImageView, windowParams);
        }
    }

    /** 在鬆手下放的情況 */
    private void onDrop(int x, int y) {
        // 根據拖動到的x,y座標擷取拖動位置下方的ITEM對應的POSTION
        int tempPostion = pointToPosition(x, y);
//        if (tempPostion != AdapterView.INVALID_POSITION) {
            dropPosition = tempPostion;
            DragAdapter mDragAdapter = (DragAdapter) getAdapter();
            //顯示剛拖動的ITEM
            mDragAdapter.setShowDropItem(true);
            //重新整理適配器,讓對應的ITEM顯示
            mDragAdapter.notifyDataSetChanged();
//        }
    }

 

運行效果:

  • 650) this.width=650;" src="http://www.itlanbao.com/code/users/10000/20151112/2015111214035778235066.gif" />


效果源碼:http://www.itlanbao.com/code/20151112/10000/100641.html


《IT藍豹》高仿花田ios版標籤移動效果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.