美文网首页
CoordinatorLayout.Behavior 探究

CoordinatorLayout.Behavior 探究

作者: 吕志豪 | 来源:发表于2017-11-16 10:52 被阅读0次

    A观察B 的变化

             A
            <TextView
                android:id="@+id/tv"
                android:layout_width="200pt"
                android:layout_height="200pt"
                android:text="TV"
                android:background="@color/common_ColorPrimary"
                app:layout_behavior="com.gamerole.zutan.behavior.FistBehavior" />
    B
    <Button
                android:id="@+id/bt"
                android:text="BT"
                android:layout_width="200pt"
                android:layout_height="50pt"
                android:layout_gravity="bottom"
                android:background="@color/common_red" />
    
    image.png

    相关文章

      网友评论

          本文标题:CoordinatorLayout.Behavior 探究

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