-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiplom.txt
51 lines (46 loc) · 1.76 KB
/
diplom.txt
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
<LinearLayout
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/hinty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Ââåäè ñâîè áàëëû:" />
<EditText
android:id="@+id/maths"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Ìàòåìàòèêà"
android:inputType="number" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/russian"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Ðóññêèé ÿçûê"
android:inputType="number"
android:layout_weight="1"/>
<Button
android:id="@+id/button_ege"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Äîáàâèòü áàëëû"
android:layout_weight="1"/>
</LinearLayout>
<FrameLayout
android:id="@+id/ege_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Submit"
android:enabled="false"
android:layout_gravity="center"/>