美文网首页
关于androidx中app:layout_behavior="

关于androidx中app:layout_behavior="

作者: hkceey | 来源:发表于2019-05-05 16:57 被阅读0次

    Google依赖从28之后,开始全面转移到androidx,更规范的系统化的库!

    在适配androidx.coordinatorlayout.widget.CoordinatorLayout之后,发现app:layout_behavior="@string/appbar_scrolling_view_behavior"无法找到,检索一圈无果,去老工程里面找到了

    <string name="appbar_scrolling_view_behavior" translatable="false">android.support.design.widget.AppBarLayout$ScrollingViewBehavior</string>

    既然都是字符串引用,第一种方法,公共层自己建立appbar_scrolling_view_behavior,把上面的代码中android.support.design.widget.AppBarLayout$ScrollingViewBehavior更改为com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior。

    第二种:将app:layout_behavior="@string/appbar_scrolling_view_behavior"直接更改为app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"。

    相关文章

      网友评论

          本文标题:关于androidx中app:layout_behavior="

          本文链接:https://www.haomeiwen.com/subject/qhkfpttx.html