Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Ajout éléments graphiques / projet Zoo / 23-05
· 251ed5c9
BALTUS bernard
authored
May 23, 2023
251ed5c9
Ajout éléments graphiques / projet Zoo / 23-05
· 7b5b9e4b
BALTUS bernard
authored
May 23, 2023
7b5b9e4b
Show whitespace changes
Inline
Side-by-side
app/src/main/res/layout/home.xml
View file @
7b5b9e4b
...
...
@@ -8,7 +8,13 @@
android:id=
"@+id/tv_subtitle"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/home_subtitle"
/>
android:text=
"@string/home_subtitle"
android:textColor=
"#FFFFFF"
android:background=
"#05E305"
android:padding=
"25dp"
android:gravity=
"center"
android:textSize=
"25sp"
/>
<TextView
android:id=
"@+id/tv_info"
...
...
app/src/main/res/layout/warningform.xml
View file @
7b5b9e4b
...
...
@@ -9,7 +9,8 @@
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/warningform_entitled"
android:labelFor=
"@+id/edit_entitled"
/>
android:labelFor=
"@+id/edit_entitled"
android:textSize=
"20sp"
/>
<EditText
android:id=
"@+id/edit_entitled"
...
...
@@ -17,14 +18,17 @@
android:layout_height=
"wrap_content"
android:ems=
"10"
android:inputType=
"text|textCapSentences"
android:text=
""
/>
android:text=
""
android:background=
"#EFEDED"
android:textColor=
"#000000"
/>
<TextView
android:id=
"@+id/tv_place"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/warningform_place"
android:labelFor=
"@+id/edit_place"
/>
android:labelFor=
"@+id/edit_place"
android:textSize=
"20sp"
/>
<EditText
android:id=
"@+id/edit_place"
...
...
@@ -32,14 +36,17 @@
android:layout_height=
"wrap_content"
android:ems=
"10"
android:inputType=
"text|textCapWords"
android:text=
""
/>
android:text=
""
android:background=
"#EFEDED"
android:textColor=
"#000000"
/>
<TextView
android:id=
"@+id/tv_info"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/warningform_info"
android:labelFor=
"@id/edit_info"
/>
android:labelFor=
"@id/edit_info"
android:textSize=
"20sp"
/>
<EditText
...
...
@@ -47,21 +54,28 @@
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:ems=
"10"
android:inputType=
"text"
android:text=
""
/>
android:inputType=
"text|textMultiLine|textCapSentences"
android:text=
""
android:layout_weight=
"1"
android:gravity=
"start|top"
android:background=
"#EFEDED"
android:textColor=
"#000000"
/>
<CheckBox
android:id=
"@+id/checkBox_emergency"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/warningform_checkbox"
/>
android:text=
"@string/warningform_checkbox"
android:textSize=
"20sp"
/>
<Button
android:id=
"@+id/btn_validate"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/warningform_validate"
android:onClick=
"send"
/>
android:onClick=
"send"
android:textColor=
"#FFFFFF"
android:background=
"#05E305"
/>
<!--
au dessus onClick
mécanisme de récupération de données déprécié par Android
...
...