blob: d972dd784016c7d1ee74f193a82184e0d87cc5fd [file] [log] [blame]
Leon Scroggins81db3662009-06-04 17:45:11 -04001<?xml version="1.0" encoding="utf-8"?>
Leon Scrogginsa81a7642009-08-31 17:05:41 -04002<!--
Michael Kolb11d19782011-03-20 10:17:40 -07003 Copyright 2011, The Android Open Source Project
Leon Scroggins81db3662009-06-04 17:45:11 -04004
Leon Scrogginsa81a7642009-08-31 17:05:41 -04005 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
Leon Scroggins81db3662009-06-04 17:45:11 -04008
Leon Scrogginsa81a7642009-08-31 17:05:41 -04009 http://www.apache.org/licenses/LICENSE-2.0
Leon Scroggins81db3662009-06-04 17:45:11 -040010
Leon Scrogginsa81a7642009-08-31 17:05:41 -040011 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.
Leon Scroggins81db3662009-06-04 17:45:11 -040016-->
Kulanthaivel Palanichamy3817bac2014-10-23 19:11:17 -070017<LinearLayout
Michael Kolb11d19782011-03-20 10:17:40 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:id="@+id/titlebar"
Kulanthaivel Palanichamy3817bac2014-10-23 19:11:17 -070020 android:orientation="vertical"
Kulanthaivel Palanichamy77942682014-10-28 11:52:06 -070021 android:focusable="true"
22 android:focusableInTouchMode="true"
Romain Guy15b8ec62010-01-08 15:06:43 -080023 android:layout_width="match_parent"
Michael Kolb11d19782011-03-20 10:17:40 -070024 android:layout_height="wrap_content">
Enrico Ros1f5a0952014-11-18 20:15:48 -080025
26 <FrameLayout
Romain Guy15b8ec62010-01-08 15:06:43 -080027 android:layout_width="match_parent"
Enrico Ros1f5a0952014-11-18 20:15:48 -080028 android:layout_height="@dimen/toolbar_height">
29
30 <include
31 layout="@layout/title_bar_nav"
32 android:id="@+id/taburlbar"
33 android:layout_width="match_parent"
34 android:layout_height="@dimen/toolbar_height" />
35
36 <ViewStub
37 android:id="@+id/snapshotbar_stub"
38 android:layout="@layout/title_bar_snapshot"
39 android:layout_width="match_parent"
40 android:layout_height="@dimen/toolbar_height" />
41
42 <!-- Cosmetic separator -->
43 <View
44 android:layout_width="match_parent"
45 android:layout_height="1dp"
46 android:layout_gravity="bottom"
47 android:background="@color/NavigationBarUnderline" />
48 </FrameLayout>
49
50 <!-- the main Progress view -->
Bijan Amirzada41242f22014-03-21 12:12:18 -070051 <com.android.browser.PageProgressView
Michael Kolbc16c5952011-03-29 15:37:03 -070052 android:id="@+id/progress"
53 android:layout_width="match_parent"
Michael Kolb8f11d062011-04-25 12:47:07 -070054 android:layout_height="wrap_content"
Michael Kolbc16c5952011-03-29 15:37:03 -070055 android:background="@null"
Kulanthaivel Palanichamy3817bac2014-10-23 19:11:17 -070056 android:layout_gravity="bottom"
Enrico Ros1f5a0952014-11-18 20:15:48 -080057 android:src="@drawable/deco_progress_bar"
John Reck0f602f32011-07-07 15:38:43 -070058 android:layout_marginTop="@dimen/progress_bar_margin"
Michael Kolbc16c5952011-03-29 15:37:03 -070059 android:visibility="gone" />
Kulanthaivel Palanichamy3817bac2014-10-23 19:11:17 -070060</LinearLayout>