Hallo Leute ich habe ein Problem mit meinem Emulator, er ordnet die Widgets iwie immer nur im oberen linken Fenster an wie im Bild.
Wisst ihr warum?
Hallo Leute ich habe ein Problem mit meinem Emulator, er ordnet die Widgets iwie immer nur im oberen linken Fenster an wie im Bild.
Wisst ihr warum?
Welches Layout verwendest Du?
Versuche es mal mit dem LinearLayout. Das sollte besser aussehen.
Mit linear layout ordnet er auch alles oben links an... weis nicht wieso
woran kann es sonst liegen?
Zeig mal das XML-Layout.
Kein Screenshot sondern das XML war gefragt.
Du wirst woll das Constraintlayout benutzen und keine Ankerpunkte (Constrains) gesetzt haben.
hier das xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="123dp"
tools:layout_editor_absoluteY="147dp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Okay?"
tools:layout_editor_absoluteX="176dp"
tools:layout_editor_absoluteY="356dp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Torka4Life"
tools:layout_editor_absoluteX="143dp"
tools:layout_editor_absoluteY="391dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
Alles anzeigen
Ich hätte gern ein normales Layout, sry bin noch anfänger, was muss ich da schreiben? Ich kann mit constrainLayout mit ankerpunkten nichts anfangen
Dann zeige doch mal deinen Versuch mit linearlayout. Linearlayout ist das einfachste. Das kann horizontal oder vertikal sein. Und kann auch verschachtelt werden.
Linear Layout Tutorial With Examples In Android | Abhi Android
Das wäre mein Versuch:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="123dp"
tools:layout_editor_absoluteY="147dp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Okay?"
tools:layout_editor_absoluteX="176dp"
tools:layout_editor_absoluteY="356dp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Torka4Life"
tools:layout_editor_absoluteX="143dp"
tools:layout_editor_absoluteY="391dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
Alles anzeigen
Das ist ja immer noch ein ConstraintLayout ich dachte du willst ein Linearlayout.
Und in den Costrain sind immer noch keine Ankerpunkte. Hast du dir überhaupt die links die ich gegeben habe angesehen ich denke nicht.
Wozu soll das Space dienen ?
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<Space
android:id="@+id/space"
android:layout_width="1dp"
android:layout_height="0dp"
android:layout_marginTop="216dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Okay?"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/space" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Torka4Life"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView3" />
</androidx.constraintlayout.widget.ConstraintLayout>
Alles anzeigen
LinearLayout etwa so
https://developer.android.com/develop/ui/views/layout/linear
https://developer.android.com/…droid/widget/LinearLayout
ZitatXMLAlles anzeigen<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical"> <TextView android:id="@+id/textView3" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="Okay?" /> <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="Torka4Life" /> </LinearLayout>
Das wäre mein Versuch:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<Space
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="123dp"
tools:layout_editor_absoluteY="147dp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Okay?"
tools:layout_editor_absoluteX="176dp"
tools:layout_editor_absoluteY="356dp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Torka4Life"
tools:layout_editor_absoluteX="143dp"
tools:layout_editor_absoluteY="391dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
Alles anzeigen
Ist das so in Ordnung`?
Sage mal was soll das, immer das gleiche zu Posten liest u überhaupt meine Beiläge. Schaust du auch mal den geposteten Code an.
Mir wird das langsam zu dumm.
Bist du ein Troll?
Ist das so in Ordnung`?
Teste dann weist du es ?
Mehr muss und braucht man hier wirklich nicht mehr zu sagen.
Tut mir leid das war nicht meine Absicht, wie gesagt ich bin noch anfänger und wollte blos wissen ob das so passt. Jedenfalls danke dir, hast recht muss es blos testen.
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!