diff options
author | Leon Scroggins <scroggo@google.com> | 2009-09-10 15:16:01 -0400 |
---|---|---|
committer | Leon Scroggins <scroggo@google.com> | 2009-09-10 15:16:01 -0400 |
commit | e7bdf3e3c933a2dcd3b99c79ba7a336f6d6f3a24 (patch) | |
tree | 38c8f952812843f417b5e09fcf9143a796607340 /res/layout | |
parent | 44f1b38741122789fea19affc1a80a5cf90b81bf (diff) | |
download | packages_apps_Browser-e7bdf3e3c933a2dcd3b99c79ba7a336f6d6f3a24.zip packages_apps_Browser-e7bdf3e3c933a2dcd3b99c79ba7a336f6d6f3a24.tar.gz packages_apps_Browser-e7bdf3e3c933a2dcd3b99c79ba7a336f6d6f3a24.tar.bz2 |
Remove the search bar from the bookmarks page.
Now that the bookmarks page is no longer the landing page, there is
no need to have a search bar at the top. Since there is now more
screen real estate, turn the mini-tabs back into regular tabs, and
return their icons. Also switch the states to look appropriate with
the new look of tabs.
Change-Id: I4cf3544753a16a57caf7a8cf1bf375008caad67c
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/tabs.xml | 46 |
1 files changed, 19 insertions, 27 deletions
diff --git a/res/layout/tabs.xml b/res/layout/tabs.xml index a8b8031..9d25eb1 100644 --- a/res/layout/tabs.xml +++ b/res/layout/tabs.xml @@ -13,36 +13,28 @@ See the License for the specific language governing permissions and limitations under the License. --> -<view xmlns:android="http://schemas.android.com/apk/res/android" - class="com.android.browser.CombinedBookmarkHistoryActivity$CustomViewGroup" - android:id="@+id/holder" - android:orientation="vertical" +<TabHost xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@android:id/tabhost" android:layout_width="fill_parent" - android:layout_height="fill_parent" - > - <TabHost - android:id="@android:id/tabhost" + android:layout_height="fill_parent"> + + <LinearLayout + android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> - <LinearLayout - android:orientation="vertical" + <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" - android:layout_height="fill_parent"> - - <TabWidget android:id="@android:id/tabs" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingLeft="1dip" - android:paddingRight="1dip" - android:paddingTop="4dip" - /> + android:layout_height="wrap_content" + android:paddingLeft="1dip" + android:paddingRight="1dip" + android:paddingTop="4dip" + /> - <FrameLayout android:id="@android:id/tabcontent" - android:layout_width="fill_parent" - android:layout_height="0dip" - android:layout_weight="1" - /> - </LinearLayout> - </TabHost> -</view> + <FrameLayout android:id="@android:id/tabcontent" + android:layout_width="fill_parent" + android:layout_height="0dip" + android:layout_weight="1" + /> + </LinearLayout> +</TabHost> |