blob: 27fce1f18b078df5859c35e753cc02db68b4af60 [file] [log] [blame]
Adam Koch37a12f42014-12-22 17:41:57 +11001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2015 Google Inc. All rights reserved.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 -->
17
18<FrameLayout
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 xmlns:app="http://schemas.android.com/apk/res-auto"
21 android:layout_width="match_parent"
22 android:layout_height="match_parent"
23 android:id="@+id/topFrameLayout">
24
25 <ProgressBar
26 android:id="@+id/progressBar"
27 android:layout_gravity="center"
28 android:indeterminate="true"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content" />
31
32 <android.support.wearable.view.GridViewPager
33 android:id="@+id/gridViewPager"
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:visibility="gone" />
37
38 <android.support.wearable.view.DotsPageIndicator
39 android:id="@+id/dotsPageIndicator"
40 android:layout_gravity="center_horizontal|bottom"
41 android:layout_height="wrap_content"
42 android:layout_width="wrap_content"
43 app:dotFadeWhenIdle="false"
Adam Koch37a12f42014-12-22 17:41:57 +110044 android:visibility="gone" />
45
46 <android.support.wearable.view.DismissOverlayView
47 android:id="@+id/dismiss_overlay"
48 android:layout_width="match_parent"
49 android:layout_height="match_parent" />
50
51</FrameLayout>
52