Android按钮在运行时重叠

时间:2017-12-23 16:53:39

标签: button overlapping

我正在尝试创建一个Android应用程序来控制RC-Car。 我刚刚开始,我的应用程序只有两个按钮。我正在使用Android Studio,在我的布局中,两个按钮是彼此之间的。但是当我运行应用程序时,只显示顶部按钮。我尝试了很多不同的东西,我找不到解决方案,或者为什么会这样。

这是我的布局:

<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"
tools:context="e.monaw.rc_car_v1.MainActivity">

<Button
    android:id="@+id/btnOnOff"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/btSpeed"
    android:layout_alignTop="@+id/btSpeed"
    android:text="On/Off"
    tools:ignore="MissingConstraints"
    tools:layout_editor_absoluteX="16dp"
    tools:layout_editor_absoluteY="97dp" />

<Button
    android:id="@+id/btSpeed"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Speed"
    tools:ignore="MissingConstraints"
    tools:layout_editor_absoluteX="16dp"
    tools:layout_editor_absoluteY="16dp" />
</android.support.constraint.ConstraintLayout>

我希望你能帮我解决这个问题!就像现在这样我无法测试它,我不能继续在我的应用程序上工作。

0 个答案:

没有答案