Added Android code
[wl-app.git] / Android / app / src / main / res / layout / fragment_about.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3             xmlns:tools="http://schemas.android.com/tools"
4             android:layout_width="match_parent"
5             android:layout_height="match_parent"
6             tools:ignore="SpUsage">
7
8     <LinearLayout
9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         android:orientation="vertical"
12         android:padding="30dp">
13
14         <Button
15             android:id="@+id/btnBecomeAFriend"
16             style="@style/RoundedButton.Orange"
17             android:layout_gravity="center_horizontal"
18             android:layout_marginBottom="20dp"
19             android:text="@string/become_a_friend"/>
20
21         <ImageView
22             android:layout_width="200dp"
23             android:layout_height="wrap_content"
24             android:layout_gravity="center"
25             android:layout_marginBottom="20dp"
26             android:adjustViewBounds="true"
27             android:src="@drawable/logo_wl_light"/>
28
29         <TextView
30             android:id="@+id/tvAbout"
31             android:layout_width="match_parent"
32             android:layout_height="wrap_content"
33             android:text="@string/about_text"
34             android:textColor="@color/gray_dark"
35             android:textSize="14dp"/>
36
37         <TextView
38             android:layout_width="match_parent"
39             android:layout_height="wrap_content"
40             android:layout_marginTop="20dp"
41             android:text="@string/about_text_fundation"
42             android:textColor="@color/gray_dark"
43             android:textSize="14dp"/>
44
45         <ImageView
46             android:layout_width="200dp"
47             android:layout_height="wrap_content"
48             android:layout_gravity="center_horizontal"
49             android:adjustViewBounds="true"
50             android:src="@drawable/logo_fnp"/>
51
52         <TextView
53             android:layout_width="match_parent"
54             android:layout_height="wrap_content"
55             android:text="@string/about_text_mkdn"
56             android:textColor="@color/gray_dark"
57             android:textSize="14dp"/>
58
59         <ImageView
60             android:layout_width="170dp"
61             android:layout_height="wrap_content"
62             android:layout_gravity="center_horizontal"
63             android:adjustViewBounds="true"
64             android:src="@drawable/logo_mkidn"/>
65     </LinearLayout>
66
67 </ScrollView>