Postingan lainnya
ScrollView Android Studio tidak bisa running
Hallo teman-teman, saya baru belajar Android Studio. Mau tanya,
Saya baru belajar ScrollView di Empty Activity. Ini Codenya:
<?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">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="52dp"
tools:layout_editor_absoluteY="55dp" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="52dp"
tools:layout_editor_absoluteY="144dp" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="52dp"
tools:layout_editor_absoluteY="415dp" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="52dp"
tools:layout_editor_absoluteY="525dp" />
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="52dp"
tools:layout_editor_absoluteY="254dp" />
<Button
android:id="@+id/button6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
tools:layout_editor_absoluteX="52dp"
tools:layout_editor_absoluteY="614dp" />
</RelativeLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
Saya bikin beberapa button secara vertical, tetapi semua buttonnya berada di atas kiri semua, di ScollView tertera tulisan: This view is not constrained. It only has designtime positions, so it will jump to (0.0) at runtime unless you add the constraints.
Padahal layout nya udah saya ganti ke ConstraintLayout. Kenapa yaa..
Terima kasih...
0
Belum ada Jawaban. Jadi yang pertama Jawaban
Login untuk ikut Jawaban