res/layout/contactlist.xml
author Vincent Veronis <veroni_v@epitech.net>
Thu, 17 Sep 2009 16:33:18 +0200
changeset 363 c7ee14b65f39
parent 361 8ec622caf8d8
child 373 da35534975cd
permissions -rw-r--r--
Gestion du changement de group.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/linlayoutBase"
	android:layout_width="fill_parent" android:layout_height="fill_parent"
	android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android">

	<LinearLayout android:layout_width="fill_parent"
		android:layout_height="wrap_content">
		<Button android:id="@+id/contactlist_left" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:text="Left"
			android:layout_weight="1">
		</Button>
		<Button android:id="@+id/contactlist_group" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:text="@string/contact_list_all_contact"
			android:layout_weight="1">
		</Button>
		<Button android:id="@+id/contactlist_right" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:text="Right"
			android:layout_weight="1">
		</Button>
	</LinearLayout>

	<LinearLayout android:layout_width="fill_parent"
		android:layout_height="fill_parent" android:orientation="horizontal">
		<ListView android:id="@+id/contactlist" android:layout_width="fill_parent"
			android:layout_height="fill_parent" />
	</LinearLayout>


</LinearLayout>