res/layout/contactlistsettings.xml
author Da Risk <darisk972@gmail.com>
Fri, 22 May 2009 22:29:14 +0200
changeset 219 79ccbe331695
parent 190 079488da1bfc
child 192 b74384311dee
permissions -rw-r--r--
Les conversations sont retenues dans les chats du service. On peut donc les réafficher dans l'activité SendIm. J'en ai profité pour rendre cette activité SingleTop ainsi une seule instance set utilisé. Il reste un probleme avec les notifications qui ne peuvent pas etre réutilisé. Si on a 2 notifications la 2e ne marchera pas.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
88
7b2a869e9ef8 Changement du dialogsettings en activity.
marseille@KungFuh
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
117
40a48262a670 Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents: 114
diff changeset
     2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
40a48262a670 Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents: 114
diff changeset
     3
	android:orientation="vertical" android:layout_width="fill_parent"
40a48262a670 Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents: 114
diff changeset
     4
	android:layout_height="fill_parent">
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
     5
	<LinearLayout android:orientation="vertical"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
     6
		android:layout_width="fill_parent" android:layout_height="fill_parent">
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
     7
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
     8
		<TextView android:layout_width="fill_parent"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
     9
			android:layout_height="wrap_content" android:text="@string/CLSServerConnection"
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    10
			android:textSize="18sp" />
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    11
		<LinearLayout
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    12
			android:orientation="horizontal" android:layout_width="fill_parent"
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    13
			android:layout_height="wrap_content">
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    14
			<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    15
				android:layout_height="wrap_content" android:text="@string/CLSUserid"
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    16
				android:minWidth="90dp" android:textSize="14sp" />
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    17
			<EditText android:id="@+id/userid" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    18
				android:layout_height="wrap_content" android:singleLine="true"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    19
				android:textSize="14sp" android:autoText="false" android:capitalize="none"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    20
				android:scrollHorizontally="true" />
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    21
		</LinearLayout>
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    22
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    23
		<LinearLayout
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    24
			android:orientation="horizontal" android:layout_width="fill_parent"
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    25
			android:layout_height="wrap_content">
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    26
			<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    27
				android:layout_height="wrap_content" android:text="@string/CLSPassword"
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    28
				android:minWidth="90dp" android:textSize="14sp" />
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    29
			<EditText android:id="@+id/password" android:layout_width="fill_parent"
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    30
				android:layout_height="wrap_content" android:singleLine="true"
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    31
				android:password="true" android:textSize="14sp" android:autoText="false"
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    32
				android:capitalize="none" android:scrollHorizontally="true" />
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    33
		</LinearLayout>
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    34
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    35
		<LinearLayout
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    36
			android:orientation="horizontal" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    37
			android:layout_height="wrap_content">
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    38
			<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    39
				android:layout_height="wrap_content" android:text="@string/CLSService"
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    40
				android:minWidth="90dp" android:textSize="14sp" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    41
			<EditText android:id="@+id/service" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    42
				android:layout_height="wrap_content" android:singleLine="true"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    43
				android:textSize="14sp" android:autoText="false" android:capitalize="none"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    44
				android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    45
		</LinearLayout>
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    46
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    47
		<LinearLayout
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    48
			android:orientation="horizontal" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    49
			android:layout_height="wrap_content">
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    50
			<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    51
				android:layout_height="wrap_content" android:text="@string/CLSHostPort"
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    52
				android:minWidth="90dp" android:textSize="14sp" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    53
			<EditText android:id="@+id/host" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    54
				android:layout_height="wrap_content" android:singleLine="true"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    55
				android:textSize="14sp" android:autoText="false" android:capitalize="none"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    56
				android:layout_weight="2" android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    57
			<EditText android:id="@+id/port" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    58
				android:layout_height="wrap_content" android:singleLine="true"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    59
				android:textSize="14sp" android:autoText="false" android:capitalize="none"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    60
				android:layout_weight="3" android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    61
		</LinearLayout>
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    62
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    63
		<TextView android:layout_width="fill_parent"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    64
			android:layout_height="wrap_content" android:text=""
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    65
			android:textSize="18sp" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    66
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    67
		<Spinner android:id="@+id/proxy_type" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    68
			android:layout_height="wrap_content" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    69
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    70
		<LinearLayout android:id="@+id/proxy_layout"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    71
			android:orientation="vertical" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    72
			android:layout_height="0sp">
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    73
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    74
			<TextView android:layout_width="fill_parent"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    75
				android:layout_height="wrap_content" android:text="@string/CLSProxyInfo"
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    76
				android:textSize="18sp" />
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    77
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    78
			<LinearLayout android:orientation="horizontal"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    79
				android:layout_width="fill_parent" android:layout_height="wrap_content">
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    80
				<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    81
					android:layout_height="wrap_content" android:text="@string/CLSHostPort"
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    82
					android:minWidth="90dp" android:textSize="14sp" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    83
				<EditText android:id="@+id/proxy_host"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    84
					android:layout_width="fill_parent" android:layout_height="wrap_content"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    85
					android:singleLine="true" android:textSize="14sp" android:autoText="false"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    86
					android:capitalize="none" android:layout_weight="2"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    87
					android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    88
				<EditText android:id="@+id/proxy_port"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    89
					android:layout_width="fill_parent" android:layout_height="wrap_content"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    90
					android:singleLine="true" android:textSize="14sp" android:autoText="false"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    91
					android:capitalize="none" android:layout_weight="3"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    92
					android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    93
			</LinearLayout>
114
a40f65ceeb1a Proxy set .
marseille
parents: 111
diff changeset
    94
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    95
			<LinearLayout
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    96
				android:orientation="horizontal" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    97
				android:layout_height="wrap_content">
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
    98
				<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
    99
					android:layout_height="wrap_content" android:text="@string/CLSLogin"
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   100
					android:minWidth="90dp" android:textSize="14sp" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   101
				<EditText android:id="@+id/proxy_login"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   102
					android:layout_width="fill_parent" android:layout_height="wrap_content"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   103
					android:singleLine="true" android:textSize="14sp" android:autoText="false"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   104
					android:capitalize="none" android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   105
			</LinearLayout>
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   106
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
   107
			<LinearLayout
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   108
				android:orientation="horizontal" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   109
				android:layout_height="wrap_content">
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   110
				<TextView android:layout_width="wrap_content"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
   111
					android:layout_height="wrap_content" android:text="@string/CLSPassword"
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   112
					android:minWidth="90dp" android:textSize="14sp" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   113
				<EditText android:id="@+id/proxy_pwd" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   114
					android:layout_height="wrap_content" android:singleLine="true"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   115
					android:password="true" android:textSize="14sp" android:autoText="false"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   116
					android:capitalize="none" android:scrollHorizontally="true" />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   117
			</LinearLayout>
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   118
		</LinearLayout>
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   119
		<Button android:id="@+id/ok" android:layout_width="fill_parent"
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   120
			android:layout_height="wrap_content" android:layout_gravity="center_horizontal"
190
079488da1bfc Issue #103 #101
nikita@nikita-rack
parents: 166
diff changeset
   121
			android:text="@string/CLSOkButton">
166
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   122
			<requestFocus />
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   123
		</Button>
d076437706a4 La connection a talk.google.com is OK !
marseille
parents: 145
diff changeset
   124
	</LinearLayout>
117
40a48262a670 Un petit skin pour l'im à travailler
Philippe Lago <lago_p@epitech.net>
parents: 114
diff changeset
   125
</ScrollView>