1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2014 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 <!-- Use this layout for activities where you have a single text field and need 17 an indeterminate progress indicator. You must find the ImageView, get the 18 AnimationDrawable and then call start() on it for it to be shown. --> 19 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 20 android:layout_height="match_parent" 21 android:layout_width="match_parent"> 22 23 <LinearLayout 24 android:layout_width="wrap_content" 25 android:layout_height="@dimen/setup_title_height" 26 android:layout_gravity="center_horizontal" 27 android:gravity="bottom"> 28 29 <TextView 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" 32 android:textAppearance="?android:attr/textAppearanceMedium" 33 android:id="@+id/status_text" /> 34 35 <ImageView 36 android:id="@+id/progress" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:paddingBottom="@dimen/indeterminate_bottom_padding" 40 android:src="@drawable/indeterminate_progress" /> 41 42 </LinearLayout> 43 44 </FrameLayout> 45