Ich habe ein Projekt mit Android Studio erstellt. Wenn ich es im Emulator starte, werden meine Buttons nicht dort dargestellt, wie ich sie in der IDE positioniert habe, sondern sie werden alle links oben dargestellt. Wie mache ich das richtig?
Edit: Meine main_activity.xml:
XML
<?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"
tools:context="meinwecker.MainActivity">
<TimePicker
android:id="@+id/WeckerTimePicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="-74dp" />
<TextClock
android:id="@+id/WeckerTextClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAlignment="center"
android:textSize="36sp"
tools:layout_editor_absoluteX="126dp"
tools:layout_editor_absoluteY="262dp" />
<Button
android:id="@+id/WeckerStellenButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Wecker stellen"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="305dp" />
<Button
android:id="@+id/WeckerLoeschenButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Wecker löschen"
tools:layout_editor_absoluteX="223dp"
tools:layout_editor_absoluteY="305dp" />
</android.support.constraint.ConstraintLayout>
Alles anzeigen
[Blockierte Grafik: http://fs5.directupload.net/images/170426/g8cyxabr.jpg][Blockierte Grafik: http://fs5.directupload.net/images/170426/dd87sklq.jpg]S