首页

源码搜藏网

首页 > 安卓源码 > 控件分类 > 布局类Layouts >

一个包括拖拽、滚动、动画、背景模糊功能的安卓UI布局

创建时间:2017-05-12 09:45  

一个包括拖拽、滚动、动画、背景模糊功能的安卓UI布局
一个包括拖拽、滚动、动画、背景模糊功能的安卓UI布局
暂无演示 立即下载

这是一个辅助开发的UI库,适用于某些特殊场景,如固定范围拖拽、动画、背景模糊效果等。直接看下效果图会直观点。

Screenshot

Drag模式,能够拖拽指定的 View,并能和 ViewPager 进行联动,实现拖拽和 ScrollView 的平滑滚动,带有坠落回弹效果:

Animate模式,能够实现指定 View 退出进入的动画效果,并能和 ViewPager 进行联动:

Blur模糊效果,包括局部模糊和全图模糊两种,实现伪动态模糊效果(之所以叫做伪动态模糊是因为该功能实现是通过背景模糊预处理再来动态加载实现的,如果实时进行模糊处理容易造成界面卡顿,所以该功能对静态背景比较实用)。转GIF图有点模糊,大体看下效果。

外部拖拽,在屏幕上垂直滑动就可对视图进行拖拽,能够设置主视图滑动折叠

 

相关内容

实现效果如上面的图片所示,这里简单说明下用到的哪些东西。

 

 

 

使用方法

依赖库的方法看Github上说明。

 

在布局中引用:

 

[html] view plain copy
 
 在CODE上查看代码片派生到我的代码片
  1. <com.dl7.drag.DragSlopLayout  
  2.     android:id="@+id/drag_layout"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:background="@android:color/black"  
  6.     app:fix_height="80dp"  
  7.     app:mode="drag">  
  8.         <!-- Content View -->  
  9.         <android.support.v4.view.ViewPager  
  10.         android:id="@+id/vp_photo"  
  11.         android:layout_width="match_parent"  
  12.         android:layout_height="match_parent"/>  
  13.   
  14.         <!-- Drag View -->  
  15.         <LinearLayout  
  16.         android:layout_width="match_parent"  
  17.         android:layout_height="wrap_content"  
  18.         android:orientation="vertical">  
  19.         // ......  
  20.     </LinearLayout>  
  21.     // ......  
  22. </com.dl7.drag.DragSlopLayout>  

 

如果 Content View 为 ViewPager,通过以下方法来实现联动效果:

[java] view plain copy
 
 在CODE上查看代码片派生到我的代码片
  1. mDragLayout.interactWithViewPager(true);  

如果 Drag View 包含 ScrollView 或则 NestedScrollView,通过以下方法来实现平滑滚动:

[java] view plain copy
 
 在CODE上查看代码片派生到我的代码片
  1. mDragLayout.setAttachScrollView(mSvView);  
设置 Content View 的模糊效果:

 

[java] view plain copy
 
 在CODE上查看代码片派生到我的代码片
  1. mDragLayout.setEnableBlur(true);    // 开启模糊  
  2. mDragLayout.setBlurFull(true);  // 设置全背景模糊,默认为局部模糊  
  3. mDragLayout.updateBlurView();   // 更新模糊背景  
控制 Drag View 的进入和退出:

 

 

[java] view plain copy
 
 在CODE上查看代码片派生到我的代码片
  1. mDragLayout.scrollInScreen(int duration);   // Drag 模式  
  2. mDragLayout.scrollOutScreen(int duration);  // Drag 模式  
  3.   
  4. mDragLayout.startInAnim();  // Animate 模式  
  5. mDragLayout.startOutAnim(); // Animate 模式  
  6. mDsLayout.setAnimatorMode(DragSlopLayout.FLIP_Y);   // 设置动画模式  

 

设置拖拽监听

 

[java] view plain copy
 
 在CODE上查看代码片派生到我的代码片
  1. mDragLayout.setDragPositionListener(new DragSlopLayout.OnDragPositionListener() {  
  2.             @Override  
  3.             public void onDragPosition(int visibleHeight, float percent, boolean isUp) {  
  4.                 // TODO  
  5.             }  
  6.         });  

上一篇:Android TabLayout Lib的3种TabLayout
下一篇:Android多功能的标签流布局

相关内容

热门推荐