blob: b30be8d407f907a9bdbf891c5d07816823b73a7f [file] [log] [blame]
Cary Clark01cfcdd2010-06-04 16:36:45 -04001<?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
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:id="@+id/selectControls"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:paddingTop="5dip"
22 android:paddingLeft="4dip"
23 android:paddingRight="4dip"
24 android:paddingBottom="1dip"
25 android:background="@android:drawable/bottom_bar">
26 <ImageButton
27 android:src="@drawable/ic_btn_copy"
28 android:id="@+id/copy"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 />
32
33 <ImageButton
34 android:src="@drawable/ic_btn_share"
35 android:id="@+id/share"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 />
39
40 <ImageButton
41 android:src="@drawable/ic_btn_select_all"
42 android:id="@+id/select_all"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 />
46
47 <ImageButton
48 android:src="@drawable/ic_btn_find"
49 android:id="@+id/find"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 />
53
54 <LinearLayout
55 android:layout_height="fill_parent"
56 android:layout_width="fill_parent"
57 android:layout_weight="1"
58 />
59
60 <ImageButton
61 android:src="@drawable/ic_btn_close_panel"
62 android:id="@+id/done"
63 android:layout_width="wrap_content"
64 android:layout_height="wrap_content"
65 />
66</LinearLayout>
67