res/layout/contactlist.xml
author Da Risk <da_risk@beem-project.com>
Wed, 29 Feb 2012 00:53:20 +0100
changeset 993 02aafc8b2220
parent 764 3d6983b46a03
permissions -rw-r--r--
Implements swiping on contact list by using android compat ViewPager
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
363
c7ee14b65f39 Gestion du changement de group.
Vincent Veronis <veroni_v@epitech.net>
parents: 361
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
415
164c96b9e98b Mise en place nouvelle activite user info.
Vincent Veronis <veroni_v@epitech.net>
parents: 378
diff changeset
     2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
363
c7ee14b65f39 Gestion du changement de group.
Vincent Veronis <veroni_v@epitech.net>
parents: 361
diff changeset
     3
	android:layout_width="fill_parent" android:layout_height="fill_parent"
415
164c96b9e98b Mise en place nouvelle activite user info.
Vincent Veronis <veroni_v@epitech.net>
parents: 378
diff changeset
     4
	android:orientation="vertical">
665
01f3b7160f4b add a hide group options
Nikita Kozlov <nikita@beem-project.com>
parents: 623
diff changeset
     5
	<ViewStub android:id="@+id/contactlist_stub" android:inflatedId="@+id/contactlist_groupstub" android:layout_width="fill_parent"
01f3b7160f4b add a hide group options
Nikita Kozlov <nikita@beem-project.com>
parents: 623
diff changeset
     6
		android:layout_height="wrap_content" android:layout="@layout/contactlist_groupstub"/>
993
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
     7
		
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
     8
		<!-- 
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
     9
	
363
c7ee14b65f39 Gestion du changement de group.
Vincent Veronis <veroni_v@epitech.net>
parents: 361
diff changeset
    10
	<LinearLayout android:layout_width="fill_parent"
507
71cf79d83c71 Reglages de l'affichage pour la ContactList
Jean-Manuel Da Silva <dasilvj@gmail.com>
parents: 461
diff changeset
    11
		android:layout_height="fill_parent" android:orientation="horizontal"
461
17300b201cf5 Modification de l'UI de la contact list et de sendim.
dasilvj
parents: 423
diff changeset
    12
		android:padding="2px">
665
01f3b7160f4b add a hide group options
Nikita Kozlov <nikita@beem-project.com>
parents: 623
diff changeset
    13
		<ListView android:id="@+id/contactlist" android:layout_width="fill_parent"
764
3d6983b46a03 Add filtering capability on contact list.
Da Risk <darisk972@gmail.com>
parents: 665
diff changeset
    14
		    android:layout_height="fill_parent" android:transcriptMode="disabled"
3d6983b46a03 Add filtering capability on contact list.
Da Risk <darisk972@gmail.com>
parents: 665
diff changeset
    15
		    android:textFilterEnabled="true" />
363
c7ee14b65f39 Gestion du changement de group.
Vincent Veronis <veroni_v@epitech.net>
parents: 361
diff changeset
    16
	</LinearLayout>
993
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    17
	 	-->
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    18
	 	
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    19
	 	<android.support.v4.view.ViewPager android:id="@+id/pager"
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    20
	 	    android:layout_width="fill_parent"
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    21
	 	    android:layout_height="fill_parent"
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    22
	 	    android:padding="2px"/>
02aafc8b2220 Implements swiping on contact list by using android compat ViewPager
Da Risk <da_risk@beem-project.com>
parents: 764
diff changeset
    23
	
363
c7ee14b65f39 Gestion du changement de group.
Vincent Veronis <veroni_v@epitech.net>
parents: 361
diff changeset
    24
</LinearLayout>