aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_main.xml
blob: 38187515e6ef1c381d69a15247de466928bbb550 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="15dp"
    android:background="@color/black" >
    
    <TextView 
	    android:id="@+id/txt_main"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:layout_centerHorizontal="true"
	    android:textColor="@color/ThemeLight"
	    android:background="@color/black"
	    android:maxLines = "10"
		android:layout_marginTop="10dp"
		android:layout_marginBottom="10dp"
	    android:text="" />
            
	<Button
	    android:id="@+id/btn_scan"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:paddingLeft="5dp"
	    android:paddingRight="5dp"
	    android:layout_centerHorizontal="true"
	    android:textColor="@color/ThemeLight"
	    android:background="@color/ThemeDark"
	    android:text="@string/scan_networks"
	    android:onClick="btnScanClick"
	    android:layout_marginTop="15dp"
	    android:layout_marginBottom="20dp" />
	
	<Button
	    android:id="@+id/btn_manage_nets"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:layout_below="@id/btn_scan"
	    android:paddingLeft="5dp"
	    android:paddingRight="5dp"
	    android:layout_centerHorizontal="true"
	    android:textColor="@color/ThemeLight"
	    android:background="@color/ThemeDark"
	    android:text="@string/manage_networks"
	    android:onClick="btnManageClick"
	    android:layout_marginBottom="20dp" />  
	    
	<ImageView 
	    android:id="@+id/img_logo"
	    android:layout_width="match_parent"
	    android:layout_height="match_parent"    
	    android:layout_centerHorizontal="true"
	    android:layout_below="@id/btn_manage_nets"
	    android:layout_margin="20dp" >
	    
	 </ImageView>
	   
	</RelativeLayout>