Hallo alle zusammen!
Ich habe gerade einen CardView mit Buttons erstellt. Hier der Code:
Java
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.CardView
android:layout_width="330dp"
android:layout_height="220dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
app:cardCornerRadius="0dp"
app:cardElevation="10dp"
app:cardMaxElevation="15dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="true"
app:contentPadding="10dp"
app:contentPaddingBottom="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="Itzehoe und Wilster"
android:textColor="#000"
android:textSize="18sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Informationen zum Training in Itzehoe und Wilster."
android:textColor="#555" />
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout_Itzehoe"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btn_Itzehoe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Itzehoe"
android:theme="@style/PrimaryFlatButton"
tools:onClick="clicked_Itzehoe" />
<Button
android:id="@+id/btn_Wilster"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Wilster"
android:theme="@style/PrimaryFlatButton" />
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="330dp"
android:layout_height="220dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginTop="220dp"
app:cardCornerRadius="0dp"
app:cardElevation="10dp"
app:cardMaxElevation="15dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="true"
app:contentPadding="10dp"
app:contentPaddingBottom="0dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="Mannschaft und Gegner"
android:textColor="#000"
android:textSize="18sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Informationen zur Mannschaft und zum Gegner."
android:textColor="#555" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Mannschaft"
android:theme="@style/PrimaryFlatButton" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Gegner"
android:theme="@style/PrimaryFlatButton" />
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>
Alles anzeigen
So, wie Ihr seht, ist beim btn_Itzehoe ein onclick = "clicked_Itzehoe". Ich bin also in die .java Datei gegangen weiß nun nicht, wie ich dort
1. eine onclick Funktion erstelle, bzw. public void clicked_Itzehoe...
2. Eine Activity starte, die Activity heitß activity_Itzehoe.xml
Vielen Dank für Eure Hilfe. Ich bin leider absoluter Neulings.
Dankeschön
LG