aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/layout/activity_main.xml')
-rw-r--r--app/res/layout/activity_main.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/app/res/layout/activity_main.xml b/app/res/layout/activity_main.xml
new file mode 100644
index 0000000..3818751
--- /dev/null
+++ b/app/res/layout/activity_main.xml
@@ -0,0 +1,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> \ No newline at end of file