blob: d01809e6dc19bc082719cf8f3166231576a15ae5 [file] [log] [blame]
John Reck2bc80422011-06-30 15:11:49 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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
17<FrameLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Pankaj Garg21dad562015-07-02 17:17:24 -070021 android:background="@color/comboViewBackground"
Pankaj Garg68faf1c2015-06-26 17:07:37 -070022 android:paddingTop="@dimen/combo_paddingTop">
John Reck2bc80422011-06-30 15:11:49 -070023
Bijan Amirzada41242f22014-03-21 12:12:18 -070024 <com.android.browser.view.SnapshotGridView
John Reck2bc80422011-06-30 15:11:49 -070025 android:id="@+id/grid"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 android:layout_gravity="center_horizontal"
29 android:numColumns="auto_fit"
30 android:stretchMode="none"
31 android:gravity="center" />
32 <TextView
33 android:id="@android:id/empty"
34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:layout_gravity="center"
John Reck40a36612011-07-20 14:40:20 -070037 android:textAppearance="?android:attr/textAppearanceMedium"
38 android:text="@string/empty_snapshots_folder"
John Reck2bc80422011-06-30 15:11:49 -070039 android:visibility="gone" />
40
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080041 <View
42 android:layout_width="match_parent"
43 android:layout_height="@dimen/combo_shadow_height"
Pankaj Garg68faf1c2015-06-26 17:07:37 -070044 android:layout_gravity="bottom"
45 android:background="@drawable/shadow_top" />
46
47 <View
48 android:layout_width="match_parent"
49 android:layout_height="@dimen/combo_shadow_height"
Kulanthaivel Palanichamya94b4d32015-01-29 19:32:14 -080050 android:layout_gravity="top"
51 android:background="@drawable/shadow_bottom" />
52
John Reck2bc80422011-06-30 15:11:49 -070053</FrameLayout>