af6964e6
Edmur LOPES
create new git
|
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
|
<LinearLayout 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"
android:orientation="vertical"
tools:context=".savoirplus">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:textColor="@color/colorPrimaryDark"
android:text="@string/contactez_nous"
android:paddingTop="8dp"
android:paddingLeft="16dp"
tools:ignore="RtlHardcoded,RtlSymmetry,SpUsage" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="4"
android:orientation="vertical"
tools:ignore="UselessLeaf">
<WebView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="4"
android:orientation="vertical"
tools:ignore="UselessLeaf">
<WebView
android:id="@+id/contact"
android:layout_width="match_parent"
android:layout_height="match_parent">
</WebView>
</LinearLayout>
</LinearLayout>
|