aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout-land/activity_network_details.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/layout-land/activity_network_details.xml')
-rw-r--r--app/res/layout-land/activity_network_details.xml95
1 files changed, 95 insertions, 0 deletions
diff --git a/app/res/layout-land/activity_network_details.xml b/app/res/layout-land/activity_network_details.xml
new file mode 100644
index 0000000..1b70f79
--- /dev/null
+++ b/app/res/layout-land/activity_network_details.xml
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:baselineAligned="false"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:background="@color/black"
+ android:padding="15dp" >
+
+
+ <RelativeLayout
+ android:id="@+id/left_frame"
+ android:layout_width="0dip"
+ android:layout_weight=".55"
+ android:layout_height="fill_parent"
+ android:background="@drawable/top_frame"
+ android:padding="5dp"
+ android:paddingRight="10dp" >
+
+ <TextView
+ android:id="@+id/txt_net_details"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_margin="10dp"
+ android:background="@color/black"
+ android:textColor="@color/ThemeLight"
+ android:textIsSelectable="true"
+ android:textSize="7pt" />
+
+ <CheckBox
+ android:id="@+id/chk_show_pass_details"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/txt_net_details"
+ android:text="@string/show_password"
+ android:textColor="@color/ThemeLight"
+ android:textSize="10pt" />
+
+ </RelativeLayout>
+
+ <RelativeLayout
+ android:id="@+id/button_frame"
+ android:layout_toRightOf="@id/left_frame"
+ android:layout_width="0dip"
+ android:layout_weight=".45"
+ android:layout_height="wrap_content"
+ android:background="@color/black"
+ android:padding="5dp" >
+
+ <Button
+ android:id="@+id/btn_ip_settings"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/chk_show_pass_details"
+ android:layout_centerHorizontal="true"
+ android:layout_marginBottom="10dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="btnIpSettingsClick"
+ android:text="@string/text_ipv4_settings"
+ android:textColor="@color/ThemeLight"
+ android:paddingLeft="5dp"
+ android:paddingRight="5dp" />
+
+ <Button
+ android:id="@+id/btn_vpn_settings"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/btn_ip_settings"
+ android:layout_centerHorizontal="true"
+ android:layout_marginBottom="10dp"
+ android:paddingLeft="5dp"
+ android:paddingRight="5dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="btnVpnSettingsClick"
+ android:text="@string/title_activity_vpn_settings"
+ android:textColor="@color/ThemeLight" />
+
+ <Button
+ android:id="@+id/btn_delete"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/btn_vpn_settings"
+ android:layout_centerHorizontal="true"
+ android:layout_marginBottom="10dp"
+ android:paddingLeft="5dp"
+ android:paddingRight="5dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="btnDeleteClick"
+ android:text="@string/delete"
+ android:textColor="@color/ThemeLight" />
+
+
+ </RelativeLayout>
+
+
+</LinearLayout> \ No newline at end of file