aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_network_details.xml
blob: a36c9579bbcea9bd0002d52c614d988085d9f98e (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
<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>