aboutsummaryrefslogtreecommitdiffstats
path: root/project/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'project/res/layout')
-rw-r--r--project/res/layout/activity_credits.xml17
-rw-r--r--project/res/layout/activity_input_password.xml65
-rw-r--r--project/res/layout/activity_long_task.xml25
-rw-r--r--project/res/layout/activity_main.xml57
-rw-r--r--project/res/layout/activity_network_details.xml38
-rw-r--r--project/res/layout/activity_select_network.xml58
-rw-r--r--project/res/layout/activity_show_status.xml43
7 files changed, 0 insertions, 303 deletions
diff --git a/project/res/layout/activity_credits.xml b/project/res/layout/activity_credits.xml
deleted file mode 100644
index 871536c..0000000
--- a/project/res/layout/activity_credits.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/ThemeDark">
-
- <TextView
- android:id="@+id/txt_credits"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:textColor="@color/ThemeLight"
- android:textColorLink="@color/ThemeLight"
- android:textSize="7pt"
- android:scrollbars = "vertical" />
-
-
-</LinearLayout> \ No newline at end of file
diff --git a/project/res/layout/activity_input_password.xml b/project/res/layout/activity_input_password.xml
deleted file mode 100644
index a024879..0000000
--- a/project/res/layout/activity_input_password.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<merge xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- tools:context=".InputPasswordActivity" >
-
-
-
- <ScrollView
- android:id="@+id/login_form"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background = "@color/black" >
-
- <LinearLayout
- style="@style/LoginFormContainer"
- android:orientation="vertical"
- android:background="@color/black"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
-
- <TextView
- android:id="@+id/txt_insert_pass"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textCursorDrawable="@null"
- android:textColor="@color/ThemeLight"
- android:textSize="10pt"
- android:layout_marginBottom="10dp"
- android:background="@color/black"
- android:maxLines = "10"
- android:text="@string/insert_nets_password" />
-
- <EditText
- android:id="@+id/txt_password"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:inputType="textPassword"
- android:textColor="@color/ThemeLight"
- android:textSize="10pt"
- android:maxLines="1"
- android:singleLine="true" />
-
- <CheckBox
- android:id="@+id/chk_show_pass"
- android:textColor="@color/ThemeLight"
- android:text="@string/show_password"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
- <Button
- android:id="@+id/sign_in_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@color/ThemeDark"
- android:textColor="@color/ThemeLight"
- android:layout_gravity="right"
- android:layout_marginTop="16dp"
- android:paddingLeft="32dp"
- android:paddingRight="32dp"
- android:text="@string/button_text_next"
- android:onClick="onBtnNextClick" />
-
- </LinearLayout>
- </ScrollView>
-
-</merge> \ No newline at end of file
diff --git a/project/res/layout/activity_long_task.xml b/project/res/layout/activity_long_task.xml
deleted file mode 100644
index 769144e..0000000
--- a/project/res/layout/activity_long_task.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/black" >
-
- <ProgressBar
- android:id="@+id/progbar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true" />
-
- <TextView
- android:id="@+id/txt_msg"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:layout_below="@id/progbar"
- android:padding="10dp"
- android:textColor="@color/ThemeLight" />
-
-
-</RelativeLayout> \ No newline at end of file
diff --git a/project/res/layout/activity_main.xml b/project/res/layout/activity_main.xml
deleted file mode 100644
index 3818751..0000000
--- a/project/res/layout/activity_main.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-<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
diff --git a/project/res/layout/activity_network_details.xml b/project/res/layout/activity_network_details.xml
deleted file mode 100644
index a36c957..0000000
--- a/project/res/layout/activity_network_details.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="15dp"
- android:background="@color/black"
- tools:context=".NetworkDetailsActivity" >
-
- <TextView
- android:id="@+id/txt_net_details"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:textColor="@color/ThemeLight"
- android:textSize="7pt"
- android:background="@color/black" />
-
- <CheckBox
- android:id="@+id/chk_show_pass_details"
- android:layout_below="@id/txt_net_details"
- android:textColor="@color/ThemeLight"
- android:text="@string/show_password"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
- <Button
- android:id="@+id/btn_delete"
- android:layout_below="@id/chk_show_pass_details"
- android:layout_marginTop="15dp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:textColor="@color/ThemeLight"
- android:background="@color/ThemeDark"
- android:text="@string/delete"
- android:onClick="btnDeleteClick" />
-
-</RelativeLayout> \ No newline at end of file
diff --git a/project/res/layout/activity_select_network.xml b/project/res/layout/activity_select_network.xml
deleted file mode 100644
index 2dd7958..0000000
--- a/project/res/layout/activity_select_network.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/layout_selnets"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="15dp"
- tools:context=".SelectNetworkActivity"
- android:background="@color/black" >
-
- <TextView
- android:id="@+id/txt_selnets"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:textColor="@color/ThemeLight"
- android:textSize="10pt"
- android:maxLines = "5"
- android:scrollbars = "vertical"
- android:layout_marginBottom="10dp" />
-
- <Button
- android:id="@+id/btn_rescan"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/txt_selnets"
- android:paddingLeft="10dp"
- android:paddingRight="10dp"
- android:layout_centerHorizontal="true"
- android:textColor="@color/ThemeLight"
- android:background="@color/ThemeDark"
- android:text="@string/rescan"
- android:onClick="btnScanClick" />
-
- <ScrollView
- android:id="@+id/scrollview"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@id/btn_rescan"
- android:layout_centerHorizontal="true"
- android:scrollbars="vertical"
- android:fillViewport="true"
- android:textColor="@color/ThemeLight"
- android:background="@color/White" >
-
- <TableLayout
- android:id="@+id/table_networks"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="fill_horizontal"
- android:isScrollContainer="true"
- android:textColor="@color/ThemeLight"
- android:background="@color/black" >
- </TableLayout>
-
-
- </ScrollView>
-
-</RelativeLayout> \ No newline at end of file
diff --git a/project/res/layout/activity_show_status.xml b/project/res/layout/activity_show_status.xml
deleted file mode 100644
index 9f7e584..0000000
--- a/project/res/layout/activity_show_status.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="15dp"
- android:background="@color/black"
- tools:context=".ShowStatusActivity" >
-
- <TextView
- android:id="@+id/txt_status"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:background="@color/black"
- android:textColor="@color/ThemeLight" />
-
- <Button
- android:id="@+id/btn_disconnect"
- android:background="@color/ThemeDark"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_centerHorizontal="true"
- android:layout_below="@id/txt_status"
- android:layout_marginTop="10dp"
- android:textColor="@color/ThemeLight"
- android:text="@string/disconnect"
- android:onClick="onBtnDisconnectClick"/>
-
- <Button
- android:id="@+id/btn_back"
- android:background="@color/ThemeDark"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_centerHorizontal="true"
- android:layout_below="@id/txt_status"
- android:layout_marginTop="10dp"
- android:textColor="@color/ThemeLight"
- android:text="@string/back_main"
- android:onClick="onBtnMainClick"/>
-
-</RelativeLayout> \ No newline at end of file