diff options
author | Winson Chung <winsonc@google.com> | 2011-07-19 15:47:55 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2011-07-19 17:59:48 -0700 |
commit | 32174c878c77b4e0f13449f4c26ff6b487bc7ca6 (patch) | |
tree | 374b58ddd29e6b638aedee4b6c4e65d4f3498e53 /res/layout-land | |
parent | 95383fe41dacc45c2aa97e7f47bafebb5b7655d8 (diff) | |
download | packages_apps_trebuchet-32174c878c77b4e0f13449f4c26ff6b487bc7ca6.zip packages_apps_trebuchet-32174c878c77b4e0f13449f4c26ff6b487bc7ca6.tar.gz packages_apps_trebuchet-32174c878c77b4e0f13449f4c26ff6b487bc7ca6.tar.bz2 |
Fxing issues with the scroll bar
- Removing track from AllApps
- Scrollbar should reach edge of track now
- Fixing flashing when going from AppsCustomize to workspace and switching tabs in AppsCustomize
Change-Id: Id69bd04dc503608566c3a33a1344904e3db383bf
Diffstat (limited to 'res/layout-land')
-rw-r--r-- | res/layout-land/launcher.xml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/res/layout-land/launcher.xml b/res/layout-land/launcher.xml index 4aa4870..428a0a7 100644 --- a/res/layout-land/launcher.xml +++ b/res/layout-land/launcher.xml @@ -4,9 +4,9 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - + http://www.apache.org/licenses/LICENSE-2.0 - + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -22,6 +22,19 @@ android:layout_width="match_parent" android:layout_height="match_parent"> + <include + android:id="@+id/paged_view_indicator_track" + layout="@layout/scroll_indicator_track" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_gravity="bottom" /> + <include + android:id="@+id/paged_view_indicator" + layout="@layout/scroll_indicator" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="bottom" /> + <!-- The workspace contains 5 screens of cells --> <com.android.launcher2.Workspace android:id="@+id/workspace" @@ -41,19 +54,6 @@ <include android:id="@+id/cell5" layout="@layout/workspace_screen" /> </com.android.launcher2.Workspace> - <include - android:id="@+id/paged_view_indicator_track" - layout="@layout/scroll_indicator_track" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_gravity="bottom" /> - <include - android:id="@+id/paged_view_indicator" - layout="@layout/scroll_indicator" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="bottom" /> - <include layout="@layout/qsb_bar" android:id="@+id/qsb_bar" android:layout_width="@dimen/qsb_bar_height" |