将约束视图中的拖放视图拖动到左上角

时间:2019-11-27 00:37:41

标签: android android-studio android-layout android-constraintlayout

我是约束布局的新手,在阅读了文档后,我知道视图必须具有1个水平坐标和1个垂直坐标,但是每当我将一个新视图拖入设计时,它就会移至0,0坐标

View At top left

我的XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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="match_parent">


    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"

        android:layout_marginTop="181dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:srcCompat="@tools:sample/avatars" />

    <ImageButton
        android:id="@+id/imageButton3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="@+id/imageView3"
        app:layout_constraintEnd_toEndOf="@+id/imageView3"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/ic_add_friend" />

</androidx.constraintlayout.widget.ConstraintLayout>

我已经设置了视图的垂直和水平约束,但是它仍然挂在左上方,也尝试过使用垂直和水平偏移,但是视图仍然位于左上方。请帮助

我还检查了thisthis,但对我不起作用。

1 个答案:

答案 0 :(得分:0)

如果我们移动提交,有时会发生这种情况。对我来说,这主要是与构建相关的问题。构建项目或制作项目可以解决这个问题。