aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_vpn_settings.xml
blob: 4378baab446ea261f88a8e048457a02fa4b45c4b (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
<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:background="@color/black"
    android:padding="15dp"
    tools:context=".Ipv4SettingsActivity" >

    <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="9pt" />

    <Spinner
        android:id="@+id/spin_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/button_bg"
        android:inputType="text"
        android:padding="1pt"
        android:textColor="@color/ThemeLight"
        android:textSize="10pt" />

    <Button
        android:id="@+id/btn_save_vpn_settings"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/spin_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>