美文网首页Android-ConstraintLayout
ConstraintLayout 负margin 最高效的方法

ConstraintLayout 负margin 最高效的方法

作者: 炸山哥 | 来源:发表于2021-08-04 16:30 被阅读0次

    看了很多文章说用Space实现,确实可以实现,但是还要多写一个控件,太麻烦了。
    我们直接用translationY、translationX属性就可以了,如下:

        <ImageView
            app:layout_constraintTop_toTopOf="@id/ivShipBg"
            app:layout_constraintBottom_toBottomOf="@id/ivShipBg"
            app:layout_constraintStart_toEndOf="@id/ivShipBg"
            android:id="@+id/ivSeekbarBg"
            android:src="@drawable/mhyl_seekbar_bg"
            android:layout_width="@dimen/sw_238dp"
            android:scaleType="fitXY"
            android:translationX="-4dp"
            android:layout_height="@dimen/sw_20dp"/>
    

    相关文章

      网友评论

        本文标题:ConstraintLayout 负margin 最高效的方法

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