blob: f9bd6b0ef2df9c141aec397f618eb6d0dd8970b0 [file] [log] [blame]
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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
John Reck18e93f72011-03-21 11:46:09 -070017<merge xmlns:android="http://schemas.android.com/apk/res/android">
18
19 <LinearLayout
20 android:layout_width="fill_parent"
21 android:layout_height="wrap_content">
22
23 <Button
24 android:id="@+id/new_tab"
25 android:text="@string/new_tab"
26 android:layout_width="0dip"
27 android:layout_height="wrap_content"
28 android:layout_weight="1"
29 android:singleLine="true"
30 android:textAppearance="?android:attr/textAppearanceSmall" />
31
32 <Button
33 android:id="@+id/new_incognito_tab"
34 android:text="@string/new_incognito_tab"
35 android:layout_width="0dip"
36 android:layout_height="wrap_content"
37 android:layout_weight="1"
38 android:singleLine="true"
39 android:textAppearance="?android:attr/textAppearanceSmall"
40 android:paddingLeft="0dip"
41 android:paddingRight="0dip" />
42
43 </LinearLayout>
44
45 <ListView
46 android:id="@android:id/list"
Romain Guy15b8ec62010-01-08 15:06:43 -080047 android:layout_width="match_parent"
John Reck18e93f72011-03-21 11:46:09 -070048 android:layout_height="match_parent"
49 android:listSelector="@drawable/bookmark_thumb_selector"
50 android:drawSelectorOnTop="true"
51 android:focusable="true"
52 android:focusableInTouchMode="true" />
53
54</merge>