如何忽略子元素中的ConstraintLayout填充

时间:2016-12-13 08:24:33

标签: android-layout android-constraintlayout

在我的应用程序中,我想要一些子视图忽略父视图填充。

例如:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="86dp"
  android:clipToPadding="false"
  android:padding="8dp">
    <TextView
    android:id="@+id/history_restart"
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:layout_marginBottom="-8dp"
    android:layout_marginTop="-8dp"
    android:gravity="center"
    android:paddingLeft="27dp"
    android:paddingRight="27dp"
    android:text="@string/history_restart_action_text"
    android:textColor="@color/colorAccent"
    android:textSize="@dimen/normal_text_size"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

试了但不行:(

1 个答案:

答案 0 :(得分:0)

这是不可能的。您的父视图的高度固定。添加填充意味着它将分配给其子元素的最大高度为86dp - 2 * 8dp = 70dp。使用负边距只会移动视图。它不会改变其高度。所以永远不会填满父母。

您必须放弃padding属性,而在布局内的所有其他视图上使用边距。