Inhalt

Aktueller Ordner: duesseldorfer-schuelerinventar-android-studio
β¬… Übergeordnet

fragment_question.xml

<?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:orientation="vertical"
    android:padding="16dp">

    <TextView
        android:id="@+id/tvQuestion"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginBottom="24dp"/>

    <RadioGroup
        android:id="@+id/rgAnswers"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <RadioButton
            android:id="@+id/rbAlways"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="immer"
            android:textSize="16sp"/>

        <RadioButton
            android:id="@+id/rbOften"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="meistens"
            android:textSize="16sp"/>

        <RadioButton
            android:id="@+id/rbRarely"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="selten"
            android:textSize="16sp"/>

        <RadioButton
            android:id="@+id/rbNever"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="nie"
            android:textSize="16sp"/>

    </RadioGroup>

</LinearLayout>