aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/activity_muc_details.xml
blob: e7b11d9fe452d9ba166c0a826cdc99d0ccb1a9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
			xmlns:app="http://schemas.android.com/apk/res-auto"
			android:layout_width="fill_parent"
			android:layout_height="fill_parent"
			android:background="@color/grey200">

	<LinearLayout
		android:id="@+id/muc_main_layout"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		android:orientation="vertical">

		<LinearLayout
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_marginLeft="@dimen/activity_horizontal_margin"
			android:layout_marginRight="@dimen/activity_horizontal_margin"
			android:layout_marginTop="@dimen/activity_vertical_margin"
			android:layout_marginBottom="@dimen/activity_vertical_margin"
			android:background="@drawable/infocard_border"
			android:orientation="vertical"
			android:padding="@dimen/infocard_padding">

			<TextView
				android:id="@+id/muc_jabberid"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:layout_marginBottom="16dp"
				android:text="@string/account_settings_example_jabber_id"
				android:textColor="@color/black87"
				android:textSize="?attr/TextSizeHeadline"
				android:textStyle="bold"/>

			<RelativeLayout
				android:layout_width="fill_parent"
				android:layout_height="wrap_content"
				android:layout_marginBottom="32dp">

				<com.makeramen.roundedimageview.RoundedImageView
					android:id="@+id/your_photo"
					android:layout_width="48dp"
					android:layout_height="48dp"
					android:layout_alignParentLeft="true"
					android:src="@drawable/ic_profile"
					app:riv_corner_radius="2dp" />

				<LinearLayout
					android:layout_width="fill_parent"
					android:layout_height="wrap_content"
					android:layout_centerVertical="true"
					android:layout_toRightOf="@+id/your_photo"
					android:orientation="vertical"
					android:paddingLeft="8dp">

					<TextView
						android:id="@+id/muc_your_nick"
						android:layout_width="wrap_content"
						android:layout_height="wrap_content"
						android:singleLine="true"
						android:textColor="@color/black87"
						android:textSize="?attr/TextSizeHeadline"/>

					<TextView
						android:id="@+id/muc_role"
						android:layout_width="wrap_content"
						android:layout_height="wrap_content"
						android:singleLine="true"
						android:textColor="@color/black87"
						android:textSize="?attr/TextSizeBody"/>
				</LinearLayout>

				<ImageButton
					android:id="@+id/edit_nick_button"
					android:layout_width="wrap_content"
					android:layout_height="wrap_content"
					android:layout_alignParentRight="true"
					android:layout_centerVertical="true"
					android:background="?android:selectableItemBackground"
					android:padding="@dimen/image_button_padding"
					android:src="?attr/icon_edit_dark"/>
			</RelativeLayout>

			<RelativeLayout
				android:layout_width="fill_parent"
				android:layout_height="wrap_content">
				<TextView
				android:id="@+id/muc_conference_type"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:text="@string/private_conference"
				android:layout_centerVertical="true"
				android:textColor="@color/black87"
				android:textSize="?attr/TextSizeBody"
				android:layout_alignParentLeft="true"
				android:layout_toLeftOf="@+id/change_conference_button"
				/>
			<ImageButton
				android:id="@+id/change_conference_button"
				style="?android:attr/buttonStyleSmall"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:layout_gravity="center_horizontal"
				android:layout_alignParentRight="true"
				android:layout_centerVertical="true"
				android:background="?android:selectableItemBackground"
				android:padding="@dimen/image_button_padding"
				android:src="?attr/icon_settings"/>
				</RelativeLayout>

			<RelativeLayout
				android:layout_width="fill_parent"
				android:layout_height="wrap_content">
				<TextView
					android:id="@+id/notification_status_text"
					android:layout_width="wrap_content"
					android:layout_height="wrap_content"
					android:text="@string/notify_on_all_messages"
					android:layout_centerVertical="true"
					android:textColor="@color/black87"
					android:textSize="?attr/TextSizeBody"
					android:layout_alignParentLeft="true"
					android:layout_toLeftOf="@+id/notification_status_button"
					/>
				<ImageButton
					android:id="@+id/notification_status_button"
					style="?android:attr/buttonStyleSmall"
					android:layout_width="wrap_content"
					android:layout_height="wrap_content"
					android:layout_gravity="center_horizontal"
					android:layout_alignParentRight="true"
					android:layout_centerVertical="true"
					android:background="?android:selectableItemBackground"
					android:padding="@dimen/image_button_padding"
					android:src="@drawable/ic_notifications_grey600_24dp"/>
			</RelativeLayout>

			<TableLayout
				android:layout_width="match_parent"
				android:layout_height="wrap_content"
				android:id="@+id/muc_info_more"
				android:stretchColumns="1"
				android:visibility="gone">

				<TableRow
					android:layout_width="fill_parent"
					android:layout_height="match_parent">

					<TextView
						android:layout_width="wrap_content"
						android:layout_height="wrap_content"
						android:text="@string/server_info_mam"
						android:textColor="@color/black87"
						android:textSize="?attr/TextSizeBody" />

					<TextView
						android:id="@+id/muc_info_mam"
						android:layout_width="wrap_content"
						android:layout_height="wrap_content"
						android:layout_gravity="right"
						android:textColor="@color/black87"
						android:textSize="?attr/TextSizeBody" />
				</TableRow>

			</TableLayout>

			<TextView
				android:id="@+id/details_account"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:layout_gravity="right"
				android:layout_marginTop="32dp"
				android:text="@string/using_account"
				android:textColor="@color/black54"
				android:textSize="?attr/TextSizeInfo"/>
		</LinearLayout>

		<LinearLayout
			android:id="@+id/muc_more_details"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_marginLeft="@dimen/activity_horizontal_margin"
			android:layout_marginRight="@dimen/activity_horizontal_margin"
			android:layout_marginTop="@dimen/activity_vertical_margin"
			android:layout_marginBottom="@dimen/activity_vertical_margin"
			android:background="@drawable/infocard_border"
			android:orientation="vertical"
			android:padding="@dimen/infocard_padding">


			<LinearLayout
				android:id="@+id/muc_members"
				android:layout_width="fill_parent"
				android:layout_height="0dp"
				android:layout_weight="1"
				android:divider="?android:dividerHorizontal"
				android:orientation="vertical"
				android:showDividers="middle">
			</LinearLayout>

			<Button
				android:id="@+id/invite"
				style="?android:attr/buttonStyleSmall"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:layout_gravity="center_horizontal"
				android:layout_marginTop="24dp"
				android:text="@string/invite_contact"/>
		</LinearLayout>

	</LinearLayout>
</ScrollView>