Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 1 | <?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 | |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 17 | <RelativeLayout |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 18 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | android:id="@+id/nav_screen" |
| 20 | android:layout_width="match_parent" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 21 | android:layout_height="match_parent" |
| 22 | android:background="@drawable/nav_screen_bg" > |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 23 | <LinearLayout |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 24 | android:id="@+id/tabbar" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 25 | android:orientation="horizontal" |
| 26 | android:layout_width="match_parent" |
| 27 | android:layout_height="44dip" |
| 28 | android:layout_alignParentBottom="true" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 29 | android:gravity="right" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 30 | android:background="#C0404040"> |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 31 | <ImageButton |
| 32 | android:id="@+id/newtab" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 33 | android:layout_width="wrap_content" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 34 | android:layout_height="match_parent" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 35 | android:paddingLeft="16dip" |
| 36 | android:paddingRight="16dip" |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 37 | style="@style/HoloButton" |
| 38 | android:gravity="center_vertical" |
| 39 | android:src="@drawable/ic_new_window_holo_dark" /> |
| 40 | <ImageButton |
| 41 | android:id="@+id/newincognito" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 42 | android:layout_width="wrap_content" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 43 | android:layout_height="match_parent" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 44 | android:paddingLeft="16dip" |
| 45 | android:paddingRight="16dip" |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 46 | style="@style/HoloButton" |
| 47 | android:gravity="center_vertical" |
| 48 | android:src="@drawable/ic_new_incognito_holo_dark" /> |
| 49 | <ImageButton |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 50 | android:id="@+id/bookmarks" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 51 | android:layout_width="wrap_content" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 52 | android:layout_height="match_parent" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 53 | android:paddingLeft="16dip" |
| 54 | android:paddingRight="16dip" |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 55 | android:src="@drawable/ic_bookmarks_history_holo_dark" |
| 56 | style="@style/HoloButton" /> |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 57 | <ImageButton |
| 58 | android:id="@+id/more" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 59 | android:layout_width="wrap_content" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 60 | android:layout_height="match_parent" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 61 | android:paddingLeft="16dip" |
| 62 | android:paddingRight="16dip" |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 63 | style="@style/HoloButton" |
| 64 | android:gravity="center_vertical" |
| 65 | android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" /> |
| 66 | </LinearLayout> |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 67 | <com.android.browser.NavTabGallery |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 68 | android:id="@+id/scroller" |
| 69 | android:layout_width="match_parent" |
Michael Kolb | ff6c36b | 2011-05-04 14:21:34 -0700 | [diff] [blame] | 70 | android:layout_height="match_parent" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 71 | android:layout_above="@id/tabbar" /> |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 72 | </RelativeLayout> |