summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/swig/java/android/res/layout/dlg_account_config.xml
blob: 6e64ea9e3957b773f2b1a1c547c75fff24a33bd1 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding = "20dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textViewInfo"
        android:textAppearance="?android:attr/textAppearanceSmall"
    	android:paddingBottom="20dp"
        android:textColor="#b0b0b0" >
    </TextView>
    
	<TableRow>
        <TextView android:text="ID">
        </TextView>  


	    <EditText
	        android:id="@+id/editTextId"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:layout_weight="1"
	        android:inputType="textUri|textEmailAddress" >

	        <requestFocus />
	    </EditText>
    </TableRow>
	<TableRow>
        <TextView android:text="Registrar">
        </TextView>  
	    <EditText
	        android:id="@+id/editTextRegistrar"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:layout_weight="1"
	        android:inputType="textUri" >
	    </EditText>
    </TableRow>
	<TableRow>
        <TextView android:text="Proxy">
        </TextView>  
	    <EditText
	        android:id="@+id/editTextProxy"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:layout_weight="1"
	        android:inputType="textUri" >
	    </EditText>
    </TableRow>
	<TableRow>
        <TextView android:text="Username">
        </TextView>  

	    <EditText
	        android:id="@+id/editTextUsername"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:layout_weight="1"
	        android:inputType="text" >

	    </EditText>
    </TableRow>
	<TableRow>
        <TextView android:text="Password">
        </TextView>  

	    <EditText
	        android:id="@+id/editTextPassword"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:layout_weight="1"
	        android:inputType="textPassword" >

	    </EditText>
    </TableRow>
</TableLayout>