fragment_create_consomation.xml 1.08 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.consomation.CreateConsomation"
    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_consomation_name"
        android:hint="@string/create_consomation_name"/>

    <EditText
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:hint="@string/create_consomation_price"
        android:id="@+id/create_consomation_price"
        android:inputType="numberSigned|numberDecimal"
        android:maxLines="1" />

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

</LinearLayout>