blob: 53f70dc19c08c1cd2c8767b60b9256dbba6706d5 [file] [log] [blame]
Jeff Hamilton64144e42010-08-18 16:31:59 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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
Pankaj Garg49b79252014-11-07 17:33:41 -080017<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Hamilton64144e42010-08-18 16:31:59 -050019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Pankaj Garg49b79252014-11-07 17:33:41 -080021 android:orientation="vertical" >
Jeff Hamilton64144e42010-08-18 16:31:59 -050022
Pankaj Garg49b79252014-11-07 17:33:41 -080023 <FrameLayout
24 android:layout_width="match_parent"
25 android:layout_weight="90"
26 android:layout_height="match_parent" >
Jeff Hamilton64144e42010-08-18 16:31:59 -050027
Pankaj Garg49b79252014-11-07 17:33:41 -080028 <ExpandableListView
29 android:id="@+id/history"
30 android:layout_height="match_parent"
31 android:layout_width="match_parent" />
32
33 <TextView android:id="@android:id/empty"
34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:layout_gravity="center"
37 android:textAppearance="?android:attr/textAppearanceLarge"
38 android:text="@string/empty_history"
39 android:visibility="gone"
40 />
41
42 </FrameLayout>
43 <LinearLayout
44 android:layout_width="match_parent"
Jeff Hamilton64144e42010-08-18 16:31:59 -050045 android:layout_height="wrap_content"
Pankaj Garg49b79252014-11-07 17:33:41 -080046 android:layout_weight="10"
47 android:layout_alignParentBottom="true" >
Jeff Hamilton64144e42010-08-18 16:31:59 -050048
Pankaj Garg49b79252014-11-07 17:33:41 -080049 <Button
50 android:id="@+id/clear_history_button"
51 android:text="@string/clear_history"
52 android:layout_width="match_parent"
53 android:layout_height="wrap_content"
54 />
55 </LinearLayout>
56
57</LinearLayout>