res/layout/subscription.xml
author dasilvj
Fri, 30 Oct 2009 17:04:52 +0100
changeset 480 eb6f1fbea903
parent 218 5a7653411251
child 506 8e33a89c21a3
permissions -rw-r--r--
Premier jet de l'activite chat, devant remplacer par la suite SendIM.

<?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>