summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/swig/java/android/res/layout/dlg_add_buddy.xml
blob: f13e7005e3718df4352236f575f81fd58e35bc3e (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
<?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">
	<TableRow>
        <TextView android:text="Buddy URI">
        </TextView>  

	    <EditText
	        android:id="@+id/editTextUri"
	        android:layout_weight="1"
	        android:inputType="textUri" >
	        <requestFocus />
	    </EditText>
    </TableRow>
	<TableRow>
        <CheckBox
            android:id="@+id/checkBoxSubscribe"
            android:layout_column="1"
            android:text="Subscribe presence" />
    </TableRow>
</TableLayout>