blob: 5398efcb6c8eaa00a12bd67efa9c65c9f2a8ea96 [file] [log] [blame]
mindypff282d02012-09-17 10:33:02 -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-->
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080018<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
mindypff282d02012-09-17 10:33:02 -070019 android:id="@+id/background_view"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
Andrew Sappersteineb58a092014-06-24 14:03:49 -070022 android:background="@color/conversation_view_background_color"
Andrew Sapperstein1a350722013-10-11 14:02:17 -070023 android:visibility="visible">
Andy Huang2f2ad3f2012-10-16 15:31:32 -070024 <ProgressBar
mindypff282d02012-09-17 10:33:02 -070025 android:id="@+id/loading_progress"
Andy Huang2f2ad3f2012-10-16 15:31:32 -070026 style="?android:attr/progressBarStyle"
mindypff282d02012-09-17 10:33:02 -070027 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
29 android:indeterminate="true"
30 android:indeterminateBehavior="repeat"
31 android:layout_gravity="center"
32 android:visibility="gone" />
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080033</FrameLayout>