30 lines
980 B
XML
30 lines
980 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/layout_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<EditText
|
|
android:id="@+id/interval"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Frequence (min)"
|
|
android:inputType="number"/>
|
|
|
|
<!--<EditText
|
|
android:id="@+id/video_resolution_dialog"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Resolution (e.g., 1080p)" />-->
|
|
|
|
<EditText
|
|
android:id="@+id/nb_images"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="Nombre d'images"
|
|
android:inputType="number" />
|
|
|
|
</LinearLayout>
|