summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/fragment_settings.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/fragment_settings.xml')
-rw-r--r--app/src/main/res/layout/fragment_settings.xml55
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