res/layout/subscription.xml
author Nikita Kozlov <nikita@beem-project.com>
Fri, 06 Nov 2009 19:28:02 +0100
changeset 495 7ac6af9ceb0d
parent 218 5a7653411251
child 506 8e33a89c21a3
permissions -rw-r--r--
a debug

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