diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2022-09-22 20:25:19 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2022-09-22 20:25:19 +0200 |
| commit | d191a1cfc5ec76fd9985a0878b42775dbe1eddf8 (patch) | |
| tree | f93cb7fb6de2abc9f178987f081865ce43aed0d9 /app/src/main/res/layout/fragment_settings.xml | |
| parent | 36703c46b11a2300cdbba219628fc63be5bde7c3 (diff) | |
| download | lector-de-codi-d191a1cfc5ec76fd9985a0878b42775dbe1eddf8.tar.gz lector-de-codi-d191a1cfc5ec76fd9985a0878b42775dbe1eddf8.tar.zst lector-de-codi-d191a1cfc5ec76fd9985a0878b42775dbe1eddf8.zip | |
All / settings logic
Diffstat (limited to 'app/src/main/res/layout/fragment_settings.xml')
| -rw-r--r-- | app/src/main/res/layout/fragment_settings.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_settings.xml b/app/src/main/res/layout/fragment_settings.xml new file mode 100644 index 0000000..ac387fb --- /dev/null +++ b/app/src/main/res/layout/fragment_settings.xml @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="utf-8"?> +<FrameLayout 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" + tools:context=".ui.settings.SettingsFragment"> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical"> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="Where to save pictures?" + android:textAlignment="center" + android:layout_marginTop="40dp" + android:gravity="center" + android:textSize="20sp" /> + <EditText + android:id="@+id/et_where_save" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:inputType="text" + android:layout_marginTop="10dp" /> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="Width of saved image" + android:textAlignment="center" + android:layout_marginTop="40dp" + android:gravity="center" + android:textSize="20sp" /> + <EditText + android:id="@+id/et_save_width" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:inputType="numberDecimal" + android:layout_marginTop="10dp" /> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="Height of saved image" + android:textAlignment="center" + android:layout_marginTop="40dp" + android:gravity="center" + android:textSize="20sp" /> + <EditText + android:id="@+id/et_save_height" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:inputType="numberDecimal" + android:layout_marginTop="10dp" /> + </LinearLayout> +</FrameLayout>
\ No newline at end of file |
