blob: 0748a44a23b2e57fb25f4aaa78e5e4c667f1ad86 [file] [log] [blame]
Paul Westbrook2d50bcd2012-04-10 11:53:47 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2012 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
19<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Mindy Pereira006f9392012-08-15 13:22:21 -070020 android:layout_width="match_parent"
21 android:layout_height="match_parent"
22 android:orientation="vertical"
23 android:background="@android:color/white"
24 android:padding="@dimen/wait_padding">
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070025
26 <TextView
27 style="@style/WaitFragmentTitle"
28 android:text="@string/not_synced_title"
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070029 android:layout_width="match_parent"
Mindy Pereira006f9392012-08-15 13:22:21 -070030 android:layout_height="wrap_content"/>
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070031
32 <TextView
33 android:layout_width="match_parent"
Mindy Pereira006f9392012-08-15 13:22:21 -070034 android:layout_height="0dip"
35 android:layout_weight="1.0"
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070036 android:text="@string/wait_for_manual_sync_body"
Mindy Pereira006f9392012-08-15 13:22:21 -070037 android:textAppearance="?android:attr/textAppearanceMedium"/>
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070038
39 <Button android:id="@+id/manual_sync"
Mindy Pereira006f9392012-08-15 13:22:21 -070040 android:layout_width="match_parent"
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070041 android:layout_height="wrap_content"
Mindy Pereira006f9392012-08-15 13:22:21 -070042 android:text="@string/manual_sync"
43 android:layout_marginBottom="16dip"/>
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070044
Mindy Pereira006f9392012-08-15 13:22:21 -070045 <Button android:id="@+id/change_sync_settings"
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"
48 android:text="@string/change_sync_settings" />
Paul Westbrook2d50bcd2012-04-10 11:53:47 -070049
50</LinearLayout>