Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/204.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 底部带有按钮的约束布局文本_Android_Android Constraintlayout - Fatal编程技术网

Android 底部带有按钮的约束布局文本

Android 底部带有按钮的约束布局文本,android,android-constraintlayout,Android,Android Constraintlayout,我正在为屏幕做一个约束布局。在一些小屏幕中,由于按钮位于文本上方,因此无法正确显示。 在其他具有更大屏幕的设备中,显示正确 我不知道怎么才能解决它 谢谢 这是我的布局(约束布局),里面有一个线性布局 <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/and

我正在为屏幕做一个约束布局。在一些小屏幕中,由于按钮位于文本上方,因此无法正确显示。 在其他具有更大屏幕的设备中,显示正确

我不知道怎么才能解决它

谢谢

这是我的布局(约束布局),里面有一个线性布局

    <?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"
                                             xmlns:tools="http://schemas.android.com/tools"
                                             android:layout_width="match_parent"
                                             android:layout_height="match_parent"
                                             android:background="@color/wf_white">

    <LinearLayout
            android:id="@+id/ly_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/form_margins"
            android:orientation="vertical"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="parent"
            android:background="@color/wf_light_grey">

        <TextView
                style="@style/wf_text_link"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textAllCaps="true"
                android:layout_marginTop="@dimen/form_margins"
                android:text="@string/_BIWC_your_agent"/>

        <ImageView
                android:id="@+id/broker_image"
                android:layout_width="@dimen/broker_image_size"
                android:layout_height="@dimen/broker_image_size"
                android:layout_gravity="center"
                android:layout_marginTop="@dimen/text_margin_sides"
                android:src="@drawable/img_broker_without_image"
                tools:ignore="ContentDescription"/>

        <TextView
                android:id="@+id/broker_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginTop="@dimen/form_margins_mini"/>

        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginTop="@dimen/form_margins_mini"
                android:orientation="horizontal">

            <ImageView
                    android:id="@+id/broker_icon_phone"
                    android:layout_width="@dimen/icons_size_broker"
                    android:layout_height="@dimen/icons_size_broker"
                    android:layout_marginTop="@dimen/form_margins_small"
                    android:layout_marginBottom="@dimen/text_margin_sides"
                    android:visibility="gone"
                    android:src="@drawable/icon_action_phone"
                    tools:ignore="ContentDescription"/>

            <ImageView
                    android:id="@+id/broker_icon_email"
                    android:layout_width="@dimen/icons_size_broker"
                    android:layout_height="@dimen/icons_size_broker"
                    android:layout_marginTop="@dimen/form_margins_small"
                    android:layout_marginStart="@dimen/icons_margin_broker"
                    android:layout_marginBottom="@dimen/text_margin_sides"
                    android:src="@drawable/ic_email"
                    tools:ignore="ContentDescription"/>

            <ImageView
                    android:id="@+id/broker_icon_location"
                    android:layout_width="@dimen/icons_size_broker"
                    android:layout_height="@dimen/icons_size_broker"
                    android:layout_marginTop="@dimen/form_margins_small"
                    android:layout_marginStart="@dimen/icons_margin_broker"
                    android:layout_marginBottom="@dimen/text_margin_sides"
                    android:visibility="gone"
                    android:src="@drawable/ic_location"
                    tools:ignore="ContentDescription"/>

        </LinearLayout>

    </LinearLayout>

    <TextView
            android:id="@+id/broker_introduction_title"
            style="@style/wf_text_copy"
            android:layout_width="match_parent"
            android:gravity="start"
            android:layout_marginBottom="20dp"
            android:layout_marginLeft="20dp"
            android:layout_marginTop="20dp"
            android:layout_marginRight="20dp"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/ly_container"
            android:text="@string/_SR_head"/>

    <TextView
            android:id="@+id/access_code_description"
            style="@style/wf_text_hero_copy"
            android:layout_width="match_parent"
            android:layout_below="@+id/broker_introduction_title"
            android:layout_marginLeft=“20dp”
            android:layout_marginRight="20dp"
            android:layout_marginTop="20dp"
            android:layout_marginBottom="20dp"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/broker_introduction_title"
            android:gravity="start"
            android:text="@string/_BIWC_welcome_message"/>

    <Button
            android:id="@+id/btn_go_to_register"
            style="@style/wf_button_primary"
            android:layout_width="match_parent"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="20dp"
            android:descendantFocusability="beforeDescendants"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:text="@string/_BIWC_create_account"/>

</android.support.constraint.ConstraintLayout>


将ScrollView设置为父布局,并在其中设置
ConstraintLayout


您应该添加
布局约束底部到顶部
布局约束底部到底部

布局\u约束底部\u toTopOf
 —> 对齐所需视图的底部 到另一个的顶端

布局\u约束top\u toBottomOf
 —> 将所需视图的顶部与目标对齐 另一个的底部


Hi。。我不能在我的底部按钮上设置顶部约束,因为一旦我这样做,它就会向上移动(试图位于我的顶部布局和屏幕底部的中间)…有任何其他帮助吗?
           <TextView
            android:id="@+id/access_code_description"
            app:layout_constraintBottom_toTopOf"@+id/btn_go_to_register"
            android:layout_marginBottom="20dp" //Remove this line
          <Button
            android:id="@+id/btn_go_to_register"
            app:layout_constraintTop_toBottomOf="@+id/access_code_description"