summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/fragment_settings.xml
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-09-28 09:34:33 +0200
committerMaksymilian Jopek <maks@jopek.eu>2022-09-28 09:34:33 +0200
commitf795a3f4b38da552cb5e630b06e353bd7752756f (patch)
treeeb2b3b2706ba9d7d123976fdfd2d224056626955 /app/src/main/res/layout/fragment_settings.xml
parentd191a1cfc5ec76fd9985a0878b42775dbe1eddf8 (diff)
downloadlector-de-codi-master.tar.gz
lector-de-codi-master.tar.zst
lector-de-codi-master.zip
Diffstat (limited to 'app/src/main/res/layout/fragment_settings.xml')
-rw-r--r--app/src/main/res/layout/fragment_settings.xml59
1 files changed, 47 insertions, 12 deletions
diff --git a/app/src/main/res/layout/fragment_settings.xml b/app/src/main/res/layout/fragment_settings.xml
index ac387fb..ad696a7 100644
--- a/app/src/main/res/layout/fragment_settings.xml
+++ b/app/src/main/res/layout/fragment_settings.xml
@@ -9,47 +9,82 @@
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:text="Where to save pictures?"
+ android:textAlignment="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" />
+ android:layout_marginTop="10dp"
+ android:inputType="text" />
+
<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:text="Width of saved image"
+ android:textAlignment="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" />
+ android:layout_marginTop="10dp"
+ android:inputType="numberDecimal" />
+
<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:text="Height of saved image"
+ android:textAlignment="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" />
+ android:layout_marginTop="10dp"
+ android:inputType="numberDecimal" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="40dp"
+ android:gravity="center"
+ android:text="Color of app"
+ android:textAlignment="center"
+ android:textSize="20sp" />
+ <RadioGroup
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:layout_marginTop="10dp"
+ android:id="@+id/radio_group"
+ android:orientation="vertical">
+
+ <RadioButton
+ android:id="@+id/radio_purple"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Purple" />
+
+ <RadioButton
+ android:id="@+id/radio_teal"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Teal" />
+ </RadioGroup>
</LinearLayout>
</FrameLayout> \ No newline at end of file