noob Q:layout_below不要将我的按钮放在textView下面

时间:2017-07-10 14:58:51

标签: java android xml layout

非常新,请原谅滥用条款。

我正在关注Android开发课程以构建基本应用程序。我创建了一个文本视图,然后是一个按钮。使用android:layout_below="@id/rollResult"后,该按钮应位于文本视图下方,而是按钮与文本重叠。

在我的代码中添加和删除该行不会影响botton的布局位置。将此行android:layout_centerHorizontal="true"从true更改为false并返回也无效。

代码:

<?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:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.diceout.MainActivity"
tools:showIn="@layout/activity_main"
tools:layout_editor_absoluteY="81dp"
tools:layout_editor_absoluteX="0dp">

<TextView
    android:id="@+id/rollResult"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="The play App"
/>

<Button
    android:id="@+id/rollButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/rollResult"
    android:layout_centerHorizontal="true"
    android:onClick="rollDice"
    android:text="Roll" />

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

将您的ConstraintLayout更改为RelativeLayout