国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Android實現(xiàn)購物車頁面及購物車效果(點擊動畫)

whidy / 3783人閱讀

摘要:效果圖如下思路思考每個條目中的數(shù)字的更新原理。購物車的動畫效果。購物清單怎么顯示這個我暫時沒有寫,如果需要的話,可以在我的簡書下給我留言。

效果圖如下:

思路:

(1)思考每個條目中的數(shù)字的更新原理。

(2)購物車的動畫效果。

(3)購物清單怎么顯示(這個我暫時沒有寫,如果需要的話,可以在我的簡書下給我留言)。

1.因為進(jìn)入頁面,所有的商品個數(shù)都顯示為零,所以我用 ArrayList> data,把商品集合都附上零:

        //下面把data都添加0,為了剛開始顯示時,顯示的是0
        for (int i = 0; i < list.size(); i++) {
            HashMap myhashmap = new HashMap();
            myhashmap.put("number", "" + 0);
            data.add(myhashmap);
        }

然后把data傳入Adapter:

     adapter = new MyAdapter(data);

當(dāng)我們對商品進(jìn)行增減時,我們可以通過hashmap來更改,如下是增加商品的部分代碼:

    b = Integer.parseInt((String) data.get(position).get(
                            "number"));
                    data.get(position).put("number", "" + (b + 1));

2.購物車動畫效果:

首先獲取點擊時的XY坐標(biāo),并且設(shè)置動畫圖片:

// ball是個imageview
 startLocation = new int[2];// 一個整型數(shù)組,用來存儲按鈕的在屏幕的X、Y坐標(biāo)
                   view.getLocationInWindow(startLocation);// 這是獲取購買按鈕的在屏幕的X、Y坐標(biāo)(這也是動畫開始的坐標(biāo))
                   ball = new ImageView(MainActivity.this);
                   ball.setImageResource(R.mipmap.sign);// 設(shè)置動畫的圖片我的是一個小球(R.mipmap.sign)

然后是開始執(zhí)行動畫:

    private void setAnim(final View v, int[] startLocation) {
       anim_mask_layout = null;
       anim_mask_layout = createAnimLayout(); //創(chuàng)建動畫層
       anim_mask_layout.addView(v);//把動畫小球添加到動畫層
       final View view = addViewToAnimLayout(anim_mask_layout, v,
               startLocation);
       int[] endLocation = new int[2];// 存儲動畫結(jié)束位置的X、Y坐標(biāo)
       re_zhongcai_tanchu.getLocationInWindow(endLocation);// re_zhongcai_tanchu是那個拋物線最后掉落的控件

       // 計算位移
       int endX = 0 - startLocation[0] + 40;// 動畫位移的X坐標(biāo)
       int endY = endLocation[1] - startLocation[1];// 動畫位移的y坐標(biāo)
       TranslateAnimation translateAnimationX = new TranslateAnimation(0,
               endX, 0, 0);
       translateAnimationX.setInterpolator(new LinearInterpolator());
       translateAnimationX.setRepeatCount(0);// 動畫重復(fù)執(zhí)行的次數(shù)
       translateAnimationX.setFillAfter(true);

       TranslateAnimation translateAnimationY = new TranslateAnimation(0, 0,
               0, endY);
       translateAnimationY.setInterpolator(new AccelerateInterpolator());
       translateAnimationY.setRepeatCount(0);// 動畫重復(fù)執(zhí)行的次數(shù)
       translateAnimationX.setFillAfter(true);

       final AnimationSet set = new AnimationSet(false);
       set.setFillAfter(false);
       set.addAnimation(translateAnimationY);
       set.addAnimation(translateAnimationX);
       set.setDuration(800);// 動畫的執(zhí)行時間
       view.startAnimation(set);
       // 動畫監(jiān)聽事件
       set.setAnimationListener(new Animation.AnimationListener() {
           // 動畫的開始
           @Override
           public void onAnimationStart(Animation animation) {
               v.setVisibility(View.VISIBLE);
               //    Log.e("動畫","asdasdasdasd");
           }

           @Override
           public void onAnimationRepeat(Animation animation) {
               // TODO Auto-generated method stub
           }

           // 動畫的結(jié)束
           @Override
           public void onAnimationEnd(Animation animation) {
               v.setVisibility(View.GONE);
               set.cancel();
               animation.cancel();
           }
       });

   }

需要注意的是,當(dāng)動畫結(jié)束必須關(guān)閉動畫:

  v.setVisibility(View.GONE);
              set.cancel();
              animation.cancel();

購物車的彈出清單功能,我沒有寫,需要的話,可以去我的簡書留言.

我的github地址

我的公眾號如下:

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/70244.html

相關(guān)文章

  • 【收藏篇】32篇技術(shù)博文匯總(九月總結(jié))

    摘要:首先先祝大家國慶節(jié)快樂今天距離為我運(yùn)營公眾號已經(jīng)一個月了,今天把文章整合一下,希望對大家有幫助,也謝謝朋友的支持,我會繼續(xù)堅持原創(chuàng),寫更好的文章給大家一視頻獲取學(xué)習(xí)資源分享合集二功能篇實現(xiàn)金額的語音播報功能基于模式風(fēng)格的封裝之路炫酷動畫跳 showImg(https://segmentfault.com/img/remote/1460000011437678?w=900&h=500);...

    whlong 評論0 收藏0
  • 【收藏篇】32篇技術(shù)博文匯總(九月總結(jié))

    摘要:首先先祝大家國慶節(jié)快樂今天距離為我運(yùn)營公眾號已經(jīng)一個月了,今天把文章整合一下,希望對大家有幫助,也謝謝朋友的支持,我會繼續(xù)堅持原創(chuàng),寫更好的文章給大家一視頻獲取學(xué)習(xí)資源分享合集二功能篇實現(xiàn)金額的語音播報功能基于模式風(fēng)格的封裝之路炫酷動畫跳 showImg(https://segmentfault.com/img/remote/1460000011437678?w=900&h=500);...

    Eric 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<