Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 style="@style/SyncContainer" >
9 <TextView
10 style="@style/SyncTop"
11 android:text="@string/sync_title_send_tab" />
13 <LinearLayout
14 android:layout_width="fill_parent"
15 android:layout_height="wrap_content"
16 android:orientation="vertical"
17 android:padding="@dimen/SyncSpace" >
19 <TextView
20 android:id="@+id/title"
21 android:layout_width="fill_parent"
22 android:layout_height="wrap_content"
23 android:textAppearance="?android:attr/textAppearanceMedium"
24 android:text="@string/sync_title_send_tab" />
25 <TextView
26 android:id="@+id/uri"
27 android:layout_width="fill_parent"
28 android:layout_height="wrap_content"
29 android:textAppearance="?android:attr/textAppearanceSmall"
30 android:text="@string/sync_title_send_tab" />
31 </LinearLayout>
33 <ListView
34 android:id="@+id/device_list"
35 style="@style/SyncMiddle"
36 android:padding="0dp" >
37 </ListView>
39 <LinearLayout
40 style="@style/SyncBottomContainer" >
42 <LinearLayout
43 style="@style/SyncBottom" >
45 <Button
46 style="@style/SyncButton"
47 android:id="@+id/send_button"
48 android:onClick="sendClickHandler"
49 android:clickable="false"
50 android:enabled="false"
51 android:text="@string/sync_button_send" />
52 </LinearLayout>
54 </LinearLayout>
55 </LinearLayout>