Android约束布局无法正常工作/无响应

时间:2018-06-10 22:43:32

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

我正在尝试创建以下布局。我已经读过,约束布局是我应该使布局响应的原因。我已经尝试在线性布局中包含我的约束布局,希望对齐是固定的,但无济于事。 (不确定我做的是对的)

非常感谢任何帮助。

enter image description here

这是它在android studio中的样子:

enter image description here

这是我的xml代码:

<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg_rightwashed"
    android:orientation="vertical">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <Button
            android:id="@+id/menu_btn"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:layout_margin="5dp"
            android:background="@drawable/burger_btn" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:orientation="vertical">

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginEnd="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent">


            <ImageView
                android:id="@+id/calendar_btn"
                android:layout_width="190dp"
                android:layout_height="190dp"
                android:layout_alignParentBottom="true"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="16dp"
                android:layout_marginStart="8dp"
                android:layout_marginTop="8dp"
                android:background="@android:color/transparent"
                android:layoutDirection="inherit"
                android:src="@drawable/calendartrain"
                android:visibility="visible"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="1.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintVertical_bias="0.48000002" />

            <ImageView

                android:id="@+id/skillstree_btn"
                android:layout_width="190dp"
                android:layout_height="190dp"
                android:layout_alignParentBottom="true"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:layout_marginTop="8dp"
                android:layoutDirection="inherit"
                android:src="@drawable/skillstreetrain"
                android:visibility="visible"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.04"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintVertical_bias="0.58000004" />

            <ImageView
                android:id="@+id/completed_btn"
                android:layout_width="190dp"
                android:layout_height="190dp"
                android:layout_alignParentStart="true"
                android:layout_alignParentTop="true"
                android:layout_marginBottom="8dp"
                android:layout_marginEnd="8dp"
                android:layout_marginStart="8dp"
                android:layout_marginTop="8dp"
                android:layoutDirection="inherit"
                android:src="@drawable/completedtrain"
                android:visibility="visible"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.22"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:layout_constraintVertical_bias="0.24000001" />


        </android.support.constraint.ConstraintLayout>

    </LinearLayout>


    <RelativeLayout
        android:id="@+id/leftDrawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start">

        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/background_light" />

        <include
            layout="@layout/drawer"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentEnd="true"
            android:layout_alignParentTop="true" />


    </RelativeLayout>

</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:0)

您的布局取决于您在设计器中模拟的任何设备的尺寸。当屏幕尺寸或尺寸发生变化时,您的拼图排列方式就会出现不匹配的情况。

如果您希望保持三个分开,那么我建议您修改图像以沿水平轴和垂直轴配合,使得零件的圆角适合封闭public String toString() { if(this instanceof AddExpression){ //print stacktrace or something return "possible cyclic dependency"; } return "Expression: " + "(" + leftExpression.toString() + " + " + rightExpression.toString() + ")"; } 的角落。完成后,您可以旋转ConstraintLayout以显示倾斜的拼图。

这是一个快速模型的图像。因为我没有你的图像所以我使用了正方形而不是拼图。但这个概念是一样的。

enter image description here

这是XML:

ConstraintLayout