将视图移出约束布局

时间:2018-03-21 09:00:52

标签: android xml android-constraintlayout

Image that I want to be cut

我想移动我的ImageView所以它将离ConstraintLayout(父母一个)一半 您可以想象这一点,因为我在LinearLayout

中设置了负边距

我所拥有的是一个图像,它应该像图片一样被剪切,因此只有图像的按钮侧应该显示在实际设备上。其他部分应该被切断。

这是我布局的一部分。

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <ImageView
        android:layout_width="71dp"
        android:layout_height="71dp"
        android:src="@drawable/someImage"
        app:layout_constraintTop_toTopOf="parent"/>

</android.support.constraint.ConstraintLayout>

那么,有没有好办法呢?

6 个答案:

答案 0 :(得分:4)

所以我找到了解决方案。 基本上你需要从容器中翻译图像。

android:translationY="-22dp"

答案 1 :(得分:3)

添加一条指南,并说你的ImageView应该高于该指导原则,例如,此代码会使所有内容都显示为您的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

   <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:src="@drawable/your_image"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintBottom_toBottomOf="@id/guideline" />

    <android.support.constraint.Guideline
        android:id="@+id/guideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="163dp" />

</android.support.constraint.ConstraintLayout>

答案 2 :(得分:0)

通过将ImageView设置为layout_height,将0dp置于父母外侧的位置可以强制执行垂直约束。要保持ImageView的适当大小,请将dimensionRatio设置为1:1。代码将如下所示(请注意,父ConstraintLayout现在有layout_height匹配父代:)

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="71dp"
        android:layout_height="0dp"
        android:src="@drawable/someImage"
        app:layout_constraintBottom_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintDimensionRatio="1:1"/>
</android.support.constraint.ConstraintLayout>

答案 3 :(得分:0)

将图像放入线性布局中。

<LinearLayout....>

    <ImageView..../>

</LinearLayout>

并添加名为 clipChildren 的属性,并将其设置为 true

答案 4 :(得分:0)

一种技巧是在ConstraintLayout本身中为所需的边设置负边距。这就要求对那一侧有约束的其他视图偏移。图片中的右键位于ConstraintLayout下方,并隐藏在底部栏下方:

enter image description here enter image description here

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    ...
    android:layout_marginBottom="-48dp">

    <ImageButton
        android:id="@+id/leftButton"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_marginEnd="24dp"
        android:layout_marginBottom="72dp"
        android:background="@drawable/shape_next_button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" />

    <ImageButton
        android:id="@+id/rightButton"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_marginStart="24dp"
        android:background="@drawable/shape_previous_button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

答案 5 :(得分:0)

我通过在 ConstraintLayout 中添加 View 并给它一些余量来做到这一点。

View 为 ConstraintLayout 提供背景。

ConstraintLayout 必须是透明背景。

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/bg_transparent">

    <View
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginTop="38dp"
        android:background="@drawable/bg_white"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <ImageView/>