blob: ac387fb6b41b24a067c170e855fdae6b231a583c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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>
|