linphone-android/res/layout/tuto_carddav.xml
2016-03-23 11:59:52 +01:00

54 lines
No EOL
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:gravity="top|center_horizontal"
android:orientation="vertical">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="horizontal">
<EditText
android:id="@+id/carddav_username"
android:hint="Username"
android:text="sylvain"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<EditText
android:id="@+id/carddav_pwd"
android:hint="Pwd"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<EditText
android:id="@+id/carddav_ha1"
android:hint="HA1"
android:text="4747ce2517a985f2fc20234a38f068b6"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
</LinearLayout>
<EditText
android:id="@+id/carddav_server"
android:hint="Server URL"
android:text="http://192.168.0.230/sabredav/addressbookserver.php/addressbooks/sylvain/default"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button
android:id="@+id/carddav_synchronize"
android:text="Synchronize"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<TextView
android:id="@+id/carddav_events"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_weight="1"/>
</LinearLayout>