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.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