aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout-land/activity_vpn_settings.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/layout-land/activity_vpn_settings.xml')
-rw-r--r--app/res/layout-land/activity_vpn_settings.xml92
1 files changed, 92 insertions, 0 deletions
diff --git a/app/res/layout-land/activity_vpn_settings.xml b/app/res/layout-land/activity_vpn_settings.xml
new file mode 100644
index 0000000..ce6b521
--- /dev/null
+++ b/app/res/layout-land/activity_vpn_settings.xml
@@ -0,0 +1,92 @@
+<?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/lbl_vpn_settings"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_margin="10dp"
+ android:background="@color/black"
+ android:textColor="@color/ThemeLight"
+ android:textIsSelectable="false"
+ android:textSize="7pt" />
+
+
+
+ </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" >
+
+ <RelativeLayout
+ android:id="@+id/layout_vpn_profile"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/lbl_vpn_settings"
+ android:layout_margin="10dp"
+ android:background="@drawable/repwifi_button">
+ android:textAlignment="center"
+
+ <Spinner
+ android:id="@+id/spin_vpn_profile"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inputType="text"
+ android:textAlignment="center"
+ android:gravity="center"
+ android:textSize="10pt"
+ android:popupBackground="@color/ThemeLight" />
+
+ </RelativeLayout>
+
+
+ <Button
+ android:id="@+id/btn_save_vpn_settings"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/layout_vpn_profile"
+ android:layout_centerHorizontal="true"
+ android:layout_marginTop="25dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="btnSaveClick"
+ android:text="@string/txt_save"
+ android:textColor="@color/ThemeLight" />
+
+ <Button
+ android:id="@+id/btn_back"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/btn_save_vpn_settings"
+ android:layout_centerHorizontal="true"
+ android:layout_marginTop="15dp"
+ android:background="@drawable/repwifi_button"
+ android:onClick="btnBackClick"
+ android:text="@string/txt_back"
+ android:textColor="@color/ThemeLight" />
+
+
+ </RelativeLayout>
+
+
+</LinearLayout> \ No newline at end of file