-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.xml
38 lines (35 loc) · 1.36 KB
/
footer.xml
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Information">
<ImageView
android:layout_width="75dp"
android:layout_height="75dp"
android:id="@+id/imgGraphic"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp" />
<TextView
android:layout_width="300dp"
android:layout_height="100dp"
android:id="@+id/txtDescription"
android:gravity="center"
android:layout_below="@+id/imgGraphic"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp" />
<Button
android:layout_width="150dp"
android:layout_height="wrap_content"
android:text="@string/btnInfo"
android:id="@+id/btnInfo"
android:background="#B35243"
android:textColor="#FFFFFF"
android:layout_below="@+id/txtDescription"
android:layout_centerHorizontal="true"
android:layout_marginBottom="50dp"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false" />
</RelativeLayout>