Michael Kolb | f205560 | 2011-04-09 17:20:03 -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 | f205560 | 2011-04-09 17:20:03 -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" |
| 21 | android:layout_height="match_parent" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 22 | android:orientation="vertical" |
Michael Kolb | 08eb23f | 2011-08-01 16:59:34 -0700 | [diff] [blame] | 23 | android:background="@drawable/browser_background_holo"> |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 24 | <com.android.browser.NavTabGallery |
| 25 | android:id="@+id/scroller" |
| 26 | android:layout_width="match_parent" |
| 27 | android:layout_height="match_parent" |
| 28 | android:orientation="vertical" /> |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 29 | <LinearLayout |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 30 | android:id="@+id/tabbar" |
| 31 | android:orientation="horizontal" |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 32 | android:layout_width="match_parent" |
| 33 | android:layout_height="44dip" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 34 | android:gravity="right" |
Michael Kolb | 9829b43 | 2011-06-04 13:29:00 -0700 | [diff] [blame] | 35 | android:background="#C0404040"> |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 36 | <ImageButton |
| 37 | android:id="@+id/newtab" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 38 | android:layout_width="wrap_content" |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 39 | android:layout_height="match_parent" |
| 40 | style="@style/HoloButton" |
| 41 | android:gravity="center_vertical" |
Michael Kolb | 30adae6 | 2011-07-29 13:37:05 -0700 | [diff] [blame] | 42 | android:contentDescription="@string/accessibility_button_newtab" |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 43 | android:src="@drawable/ic_new_window_holo_dark" /> |
| 44 | <ImageButton |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 45 | android:id="@+id/bookmarks" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 46 | android:layout_width="wrap_content" |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 47 | android:layout_height="match_parent" |
Michael Kolb | 30adae6 | 2011-07-29 13:37:05 -0700 | [diff] [blame] | 48 | android:contentDescription="@string/accessibility_button_bookmarks" |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 49 | android:src="@drawable/ic_bookmarks_history_holo_dark" |
| 50 | style="@style/HoloButton" /> |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 51 | <ImageButton |
| 52 | android:id="@+id/more" |
Michael Kolb | 14019dd | 2011-06-21 14:57:14 -0700 | [diff] [blame] | 53 | android:layout_width="wrap_content" |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 54 | android:layout_height="match_parent" |
Michael Kolb | 7bdee0b | 2011-08-01 11:55:38 -0700 | [diff] [blame] | 55 | android:paddingLeft="8dip" |
| 56 | android:paddingRight="8dip" |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 57 | style="@style/HoloButton" |
| 58 | android:gravity="center_vertical" |
Michael Kolb | 30adae6 | 2011-07-29 13:37:05 -0700 | [diff] [blame] | 59 | android:contentDescription="@string/accessibility_button_more" |
Michael Kolb | e5d7a66 | 2011-08-02 15:30:39 -0700 | [diff] [blame^] | 60 | android:src="@drawable/ic_menu_overflow" /> |
Michael Kolb | f205560 | 2011-04-09 17:20:03 -0700 | [diff] [blame] | 61 | </LinearLayout> |
Michael Kolb | 2814a36 | 2011-05-19 15:49:41 -0700 | [diff] [blame] | 62 | </RelativeLayout> |