首页 > 代码库 > Android: TODO 应用交互的两种实现方法(Behavior)

Android: TODO 应用交互的两种实现方法(Behavior)

最近在写 TODO app,涉及到 Calendar 和 RecyclerView 的交互,

需求:

1. 往上滑动, Calendar 显示为周

2. 周显示模式下,往下滑动,显示为月

3. 列表下滑到第一个 item 的位置, Calendar 显示为周的时候,这时候改变为显示月

4. 列表上滑,Calendar 缩起来,显示为周,假如已经缩起来了,让列表滑动,显示更多的 item。

方法一:目前采用的是把 Calendar 和 RecyclerView 放在一个 LinearLayout 中,然后在 dispatchTouchEvent() 方法中根据上下滑动的手势进行了判断,然后让 Calendar 和 RecyclerView 进行交互。

方法二:目前看到另外一个新的解决办法是,使用 CoordinatorLayout 布局,然后自定义 Behavior,实现 Calendar 和 RecyclerView 的交互。

CalendarBehavior:

 1 public class CalendarBehavior extends CoordinatorLayout.Behavior<MonthPager> {
 2     private int mTop;
 3 
 4     @Override
 5     public boolean layoutDependsOn(CoordinatorLayout parent, MonthPager child, View dependency) {
 6         return dependency instanceof RecyclerView;
 7     }
 8 
 9     @Override
10     public boolean onLayoutChild(CoordinatorLayout parent, MonthPager child, int layoutDirection) {
11         parent.onLayoutChild(child, layoutDirection);
12         child.offsetTopAndBottom(mTop);
13         return true;
14     }
15 
16     private int dependentViewTop = -1;
17 
18     @Override
19     public boolean onDependentViewChanged(CoordinatorLayout parent, MonthPager child, View dependency) {
20         if (dependentViewTop != -1) {
21             int dy = dependency.getTop() - dependentViewTop;    //dependency对其依赖的view(本例依赖的view是RecycleView)
22             int top = child.getTop();
23             if (dy > -top) {
24                 dy = -top;
25             }
26 
27             if (dy < -top - child.getTopMovableDistance()) {
28                 dy = -top - child.getTopMovableDistance();
29             }
30 
31             child.offsetTopAndBottom(dy);
32         }
33         dependentViewTop = dependency.getTop(); //dependency
34         mTop = child.getTop();
35         return true;
36     }
37 }

 

关于自定义 Behavior ,入门参考:http://blog.csdn.net/tabolt/article/details/51821933

 

Android: TODO 应用交互的两种实现方法(Behavior)