Android實現(xiàn)移動小球和CircularReveal頁面切換動畫實例代碼
前言
本文主要給大家介紹了關(guān)于Android如何實現(xiàn)移動小球和CircularReveal頁面切換動畫的相關(guān)內(nèi)容,分享出來供大家參考學(xué)習(xí),下面話不多說了,來一起看看詳細的介紹吧。
效果圖如下
是在fragment中跳轉(zhuǎn)activity實現(xiàn)的效果,fragment跳fragment,activity跳activity類似~~
實現(xiàn)過程
- 重寫FloatingActionButton的onTouchListener()方法,使小球可以移動,并判斷邊界
- 點擊fab時記錄坐標(biāo)傳到下一個頁面,在下一個頁面展示動畫。
- 點擊后退或者重寫onBackPressed()方法,執(zhí)行動畫
重寫Fab的onTouchListener()
floatingActionButton.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View view, MotionEvent ev) { switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: downX = ev.getX(); downY = ev.getY(); isClick = true; break; case MotionEvent.ACTION_MOVE: isClick = false; moveX = ev.getX(); moveY = ev.getY(); int offsetX = (int) (moveX - downX); int offsetY = (int) (moveY - downY); //這里使用了setTranslation來移動view。。。嘗試過layout。不知道為什么fragment切換回來的時候會恢復(fù)原位 floatingActionButton.setTranslationX(floatingActionButton.getTranslationX() + offsetX); floatingActionButton.setTranslationY(floatingActionButton.getTranslationY() + offsetY); break; case MotionEvent.ACTION_UP: //用來觸發(fā)點擊事件 if (isClick) { startAct(); return false; } //用來判斷移動邊界 if (floatingActionButton.getX() < 0) { floatingActionButton.setX(0); } if (floatingActionButton.getX() + floatingActionButton.getWidth() > ScreenUtil.getScreenWidth(getContext())) { floatingActionButton.setX(ScreenUtil.getScreenWidth(getContext()) - floatingActionButton.getWidth()); } if (floatingActionButton.getY() < titleHeight) { floatingActionButton.setY(0); } if (floatingActionButton.getY() + floatingActionButton.getHeight() + titleHeight > getActivity().findViewById(R.id.activity_main_mainLl).getHeight() - getActivity().findViewById(R.id.fc_rg).getHeight()) { floatingActionButton.setY(getBottomY()); } break; } return true; } private void startAct() { //跳轉(zhuǎn)Activity,傳遞動畫參數(shù) Intent intent = new Intent(getActivity(), CheckWorkActivity.class); intent.putExtra("x", (int) floatingActionButton.getX() + floatingActionButton.getWidth() / 2); intent.putExtra("y", (int) floatingActionButton.getY() + floatingActionButton.getHeight() / 2); intent.putExtra("start_radius", floatingActionButton.getWidth() / 2); intent.putExtra("end_radius", DialogFragment.this.view.getHeight()); startActivity(intent); } });
在下一個頁面中實現(xiàn)CircleRevel動畫
onCrete中調(diào)用
private void initAnimation() { //ll為根布局 final LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll); linearLayout.post(new Runnable() { @Override public void run() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { Animator animator = ViewAnimationUtils.createCircularReveal( linearLayout,// 操作的視圖 getIntent().getIntExtra("x", 0), // 動畫的中心點X getIntent().getIntExtra("y", 0) + findViewById(R.id.title).getHeight(), // 動畫的中心點Y getIntent().getIntExtra("start_radius", 0), // 動畫半徑 getIntent().getIntExtra("end_radius", 0) // 動畫結(jié)束半徑 ); animator.setInterpolator(new AccelerateInterpolator()); animator.setDuration(500); animator.start(); } } }); }
點擊后退或者觸發(fā)onBackPressed時候調(diào)用
private void endAnim() { final LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { Animator animator = ViewAnimationUtils.createCircularReveal( linearLayout,// 操作的視圖 getIntent().getIntExtra("x", 0), getIntent().getIntExtra("y", 0) + findViewById(R.id.title).getHeight(), getIntent().getIntExtra("end_radius", 0), getIntent().getIntExtra("start_radius", 0) ); animator.setInterpolator(new AccelerateInterpolator()); animator.setDuration(500); animator.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { super.onAnimationEnd(animation); finish(); } }); animator.start(); } }
還有一個重要的地方是修改兩個activity的theme
<style name="AppThemeCircleRevel" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/blue</item> <item name="android:windowAnimationStyle">@null</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowIsTranslucent">true</item> <item name="android:colorBackgroundCacheHint">@null</item> </style>
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,如果有疑問大家可以留言交流,謝謝大家對腳本之家的支持。
相關(guān)文章
Android 實現(xiàn)手機接通電話后振動提示的功能
本文主要介紹Android 實現(xiàn)手機接通電話后振動提示的功能,這里整理了詳細的相關(guān)資料,并附有示例代碼,有需要的朋友可以參考下2016-08-08Android studio創(chuàng)建第一個app
這篇文章主要為大家詳細介紹了如何使用Android studio創(chuàng)建你的第一個項目Hello World,感興趣的小伙伴們可以參考一下2016-05-05Kotlin中標(biāo)準(zhǔn)函數(shù)run、with、let、also與apply的使用和區(qū)別詳解
相比Java, Kotlin提供了不少高級語法特性。對于一個Kotlin的初學(xué)者來說經(jīng)常會寫出一些不夠優(yōu)雅的代碼,下面這篇文章主要給大家介紹了關(guān)于Kotlin中標(biāo)準(zhǔn)函數(shù)run、with、let、also與apply的使用和區(qū)別的相關(guān)資料,需要的朋友可以參考下。2018-03-03Android實現(xiàn)五子棋游戲(局域網(wǎng)版)
這篇文章主要為大家詳細介紹了Android實現(xiàn)局域網(wǎng)版的五子棋游戲,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-05-05