Beiträge von Swoopo
-
-
Moin,
stehe gerade am Anfang der Android App Entwicklung.Ich möchte ein paar Element in meiner App Positionieren. Im Designer habe ich, diese dementsprechend Positioniert.
Starte ich die App nun sind Alle Elemente übereinander.
Zudem ist mir noch aufgefallen das in meiner App oben die Titelbar fehlt.Zu Verdeutlichung im Anhang noch ein paar Bilder und im Spoiler meinen Code aus der activity_main.xml
XML
Alles anzeigen<?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="de.androidnewcomer.saghallo.MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" tools:layout_editor_absoluteX="16dp" tools:layout_editor_absoluteY="59dp" /> <EditText android:id="@+id/editText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ems="10" android:inputType="textPersonName" android:text="Name" tools:layout_editor_absoluteX="16dp" tools:layout_editor_absoluteY="16dp" /> </android.support.constraint.ConstraintLayout>
Grüße Swoopo.