Initial commit.
[mobilnebezpieczenstwo.git] / res / layout / header_layout.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="match_parent"
4     android:layout_height="wrap_content"
5     android:background="@color/text_bg"
6     android:orientation="vertical"
7     android:paddingBottom="10dp"
8     android:paddingLeft="20dp"
9     android:paddingRight="20dp" >
10
11     <TextView
12         android:id="@+id/section_label"
13         android:layout_width="match_parent"
14         android:layout_height="wrap_content"
15         android:textColor="@color/text_main"
16         android:textSize="15sp" />
17
18     <RelativeLayout
19         android:layout_width="match_parent"
20         android:layout_height="wrap_content"
21         android:paddingTop="5dp" >
22
23         <LinearLayout
24             android:id="@+id/group_icons"
25             android:layout_width="wrap_content"
26             android:layout_height="wrap_content"
27             android:layout_alignParentLeft="true"
28             android:orientation="horizontal" >
29         </LinearLayout>
30
31         <ImageButton
32             android:id="@+id/legend_btn"
33             android:layout_width="85dp"
34             android:layout_height="35dp"
35             android:layout_alignParentRight="true"
36             android:background="#00000000"
37             android:scaleType="fitXY"
38             android:src="@drawable/legend_btn_selector" />
39     </RelativeLayout>
40
41     <TextView
42         android:layout_width="match_parent"
43         android:layout_height="wrap_content"
44         android:paddingTop="5dp"
45         android:text="@string/do_you_trust"
46         android:textColor="@color/text_main"
47         android:textSize="18sp"
48         android:textStyle="bold" />
49
50 </LinearLayout>