返回介绍

BottomSheets 源码解析

发布于 2024-12-23 21:14:47 字数 3996 浏览 0 评论 0 收藏 0

2 月 25 日早上,Android 官网更新了 Support Lirary 23.2 版本,其中 Design Support Library 库新加一个新的东西:Bottom Sheets。然后,第一时间写了篇 Teach you how to use Design Support Library: Bottom Sheets ,只是简单的讲了它的使用和使用的一些规范。

这篇文章我带大家看看 BottomSheetBehavior 的源码,能力有限,写的不好的地方,请尽力吐槽。好了,不说废话,直接主题

我们先简单的看下用法

    // The View with the BottomSheetBehavior
    View bottomSheet = coordinatorLayout.findViewById(R.id.bottom_sheet);
    final BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);
    behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
      @Override
      public void onStateChanged(@NonNull View bottomSheet, int newState) {
        //这里是 bottomSheet 状态的改变回调
      }

      @Override
      public void onSlide(@NonNull View bottomSheet, float slideOffset) {
        //这里是拖拽中的回调,根据 slideOffset 可以做一些动画
      }
    });

对于切换状态,你也可以手动调用 behavior.setState(int state); state 的值你可以看我的上一篇 戳我

BottomSheetBehavior 的定义如下

  public class BottomSheetBehavior<V extends View> extends CoordinatorLayout.Behavior<V>

继承自 CoordinatorLayout.Behavior, BottomSheetBehavior.from(V view) 方法获得了 BootomSheetBehavior 的实例,我们进去看看它怎么实现的。

  public static <V extends View> BottomSheetBehavior<V> from(V view) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    if (!(params instanceof CoordinatorLayout.LayoutParams)) {
      throw new IllegalArgumentException("The view is not a child of CoordinatorLayout");
    }
    CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) params)
        .getBehavior();
    if (!(behavior instanceof BottomSheetBehavior)) {
      throw new IllegalArgumentException(
          "The view is not associated with BottomSheetBehavior");
    }
    return (BottomSheetBehavior<V>) behavior;
  }

源码中看出根据传入的参数 view 的 LayoutParams 是不是 CoordinatorLayout.LayoutParams,若不是,将抛出"The view is not a child of CoordinatorLayout"的异常,通过 ((CoordinatorLayout.LayoutParams) params).getBehavior() 获得一个 behavior 并判断是不是 BottomSheetBehavior,若不是,就抛出异常"The view is not associated with BottomSheetBehavior",都符合就返回了 BottomSheetBehavior 的实例。这里我们可以知道 behavior 保存在 CoordinatorLayout.LayoutParams 里,那它是 怎么保存的呢,怀着好奇心,我们去看看 CoordinatorLayout.LayoutParams 中的源码,在 LayoutParams 的构造函数中,有这么一句:

      if (mBehaviorResolved) {
        mBehavior = parseBehavior(context, attrs, a.getString(
            R.styleable.CoordinatorLayout_LayoutParams_layout_behavior));
      }

顺藤摸瓜,我们在跟进去看看 parseBehavior 做了什么

   static final Class<?>[] CONSTRUCTOR_PARAMS = new Class<?>[] {
    Context.class,
    AttributeSet.class
  };

  static Behavior parseBehavior(Context context, AttributeSet attrs, String name) {
     /*
    *省略部分代码
    */
    try {
       /*
      *省略部分代码
      */
      Constructor<Behavior> c = constructors.get(fullName);
      if (c == null) {
        final Class<Behavior> clazz = (Class<Behavior>) Class.forName(fullName, true,
            context.getClassLoader());
        c = clazz.getConstructor(CONSTRUCTOR_PARAMS);
        c.setAccessible(true);
        constructors.put(fullName, c);
      }
      return c.newInstance(context, attrs);
    } catch (Exception e) {
      throw new RuntimeException("Could not inflate Behavior subclass " + fullName, e);
    }
  }

这里做的事情很简单,就是在实例化 CoordinatorLayout.LayoutParams 时反射生成 Behavior 实例,这就是为什么自定义 behavior 需要重写如下的构造函数

  public class CjjBehavior extends CoordinatorLayout.Behavior{
    public CjjBehavior(Context context, AttributeSet attrs) {
      super(context, attrs);
    }
  }

不然就会看到"Could not inflate Behavior subclass ..."异常 。

目前为止,我们只是了解了 CoordinatorLayout.Behavior 相关的东西,还是不知道 BottomSheetBehavior 实现的原理,别急,这就和你说说。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文