res/layout/subscription.xml
author Vincent Veronis <veroni_v@epitech.net>
Thu, 17 Sep 2009 16:33:18 +0200
changeset 363 c7ee14b65f39
parent 218 5a7653411251
child 506 8e33a89c21a3
permissions -rw-r--r--
Gestion du changement de group.

<?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:layout_width="wrap_content" android:layout_height="fill_parent" android:autoLink="none"
		android:id="@+id/SubscriptionText" android:text="@string/SubscriptText" android:layout_weight="1" />
	
	<LinearLayout android:orientation="horizontal"
		android:layout_width="fill_parent" android:layout_height="wrap_content">

		<Button android:id="@+id/SubscriptionAccept"
			android:layout_width="fill_parent" android:layout_height="fill_parent"
			android:layout_weight="1" android:text="@string/AcceptButton" />

		<Button android:id="@+id/SubscriptionRefuse"
			android:layout_width="fill_parent" android:layout_height="fill_parent"
			android:layout_weight="1" android:text="@string/RefuseButton" />
	</LinearLayout>

</LinearLayout>