fragment_create_personne.xml 1.4 KB
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="net.plil.clubinfo.etunicorn.app.consommation.CreateConsommation"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/create_personne_login"
        android:hint="@string/create_personne_login"/>

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/create_personne_carte"
        android:hint="@string/create_personne_carte"/>

    <Spinner
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/create_personne_naissance"
        android:prompt="@string/create_personne_naissance"
        android:entries="@string/action_delete" />

    <Spinner
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/create_personne_role" />


    <ProgressBar
        style="?android:attr/progressBarStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/create_personne_progress_bar"
        android:visibility="gone"/>

</LinearLayout>