res/layout/subscription.xml
author dasilvj@jean-manuel-da-silvas-macbook.local
Mon, 01 Jun 2009 20:47:46 +0200
changeset 230 21d91ef67e97
parent 218 5a7653411251
child 506 8e33a89c21a3
permissions -rw-r--r--
Bug #166 - Passage des différents EditText de l'activité Settings en SingleLine. Correction d'un bug poussant le champs Port en dehors de la zone de vue dans les tabs Proxy et XMPP.

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