2012-03-14 14:06:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/invite_desc"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2012-03-21 15:04:12 +01:00
|
|
|
android:padding="8dp"
|
2012-03-14 14:06:25 +01:00
|
|
|
/>
|
|
|
|
|
2012-03-21 14:17:09 +01:00
|
|
|
<ListView android:id="@id/android:list"
|
2012-03-14 14:06:25 +01:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-21 14:17:09 +01:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:drawSelectorOnTop="false"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:padding="8dp"
|
2012-03-14 14:06:25 +01:00
|
|
|
/>
|
|
|
|
|
2012-04-12 03:54:38 +02:00
|
|
|
<TextView android:id="@android:id/empty"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/empty_sms_inviter"
|
|
|
|
android:padding="20dp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Button android:id="@+id/button_invite"
|
|
|
|
android:text="@string/button_invite"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="10dip"
|
|
|
|
/>
|
2012-03-21 14:17:09 +01:00
|
|
|
|
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
>
|
|
|
|
<Button android:id="@+id/button_add"
|
2012-03-24 20:52:35 +01:00
|
|
|
android:text="@string/button_sms_add"
|
2012-11-21 15:17:09 +01:00
|
|
|
style="@style/spaced_buttons"
|
2012-03-21 14:17:09 +01:00
|
|
|
/>
|
2012-04-12 03:54:38 +02:00
|
|
|
<ImageButton android:id="@+id/manual_add_button"
|
2012-05-19 06:14:50 +02:00
|
|
|
android:layout_height="fill_parent"
|
2012-04-12 03:54:38 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:src="@android:drawable/ic_input_add"
|
|
|
|
android:clickable="false"
|
|
|
|
/>
|
2012-05-19 06:14:50 +02:00
|
|
|
<Button android:id="@+id/button_clear"
|
|
|
|
android:text="@string/bt_pick_clear_button"
|
2012-11-21 15:17:09 +01:00
|
|
|
style="@style/spaced_buttons"
|
2012-05-19 06:14:50 +02:00
|
|
|
/>
|
2012-03-21 14:17:09 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2012-03-14 14:06:25 +01:00
|
|
|
</LinearLayout>
|