Hallo Comunity,
Ich habe eine App in der eine Activity A mit einer Anwesenheitsliste sein soll, Am Ende dieser Anwesenheitsliste ist ein "save"-Button, welche die obrige checklisten-Konstellation in eine Activity B als individuelle Sitzung niederschreiben sol.
Ich denke der Sinn des ganzem wird klar es geht darum nachvollziehen zu können wer wann anwesend war.
Im Anhang sind code und screenshots der Activity A.
Nun weis ich zwar wie man via Button eine Activity aufruft, aber nicht wie man eine Checkliste ausließt, einen Eintrag in Activity B erstellt und dessen Konstellation dort reinschreibt.
Java
<LinearLayout
android:layout_width="1264dp"
android:layout_height="647dp"
android:orientation="horizontal"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="6dp"
tools:layout_editor_absoluteY="8dp"
android:id="@+id/linearLayout">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<CheckBox
android:id="@+id/checkBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_row="1"
android:text="Mustermann, Max" />
<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_row="2"
android:text="Mustermann, Maria" />
<CheckBox
android:id="@+id/checkBox3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_row="3"
android:text="Mustermann, Moritz" />
<CheckBox
android:id="@+id/checkBox4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_row="4"
android:text="Mustermann, Maureen" />
</GridLayout>
</LinearLayout>
Alles anzeigen