diff options
author | Andrew Flynn <flynn@google.com> | 2012-05-08 11:22:15 -0700 |
---|---|---|
committer | Andrew Flynn <flynn@google.com> | 2012-05-08 11:29:33 -0700 |
commit | de38e42fe89fd7490221427908cd97c51da21b44 (patch) | |
tree | f48241892e6a964e7432afbdad256ec96577ce97 /res/layout-land | |
parent | bec653ea44429bbe85fb334a8c8ba6520e3fa209 (diff) | |
download | packages_apps_trebuchet-de38e42fe89fd7490221427908cd97c51da21b44.zip packages_apps_trebuchet-de38e42fe89fd7490221427908cd97c51da21b44.tar.gz packages_apps_trebuchet-de38e42fe89fd7490221427908cd97c51da21b44.tar.bz2 |
7" launcher changes.
- Shrink icons in workspace (keeping hotseat size the same)
- Increase width of QSB in landscape
- Move QSB voice button to bottom in landscape
Change-Id: I2c0bad4229484f516005592f2c14da1a4939acca
Diffstat (limited to 'res/layout-land')
-rw-r--r-- | res/layout-land/search_bar.xml | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/res/layout-land/search_bar.xml b/res/layout-land/search_bar.xml index 3352fbb..88b7bbf 100644 --- a/res/layout-land/search_bar.xml +++ b/res/layout-land/search_bar.xml @@ -13,9 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. --> -<LinearLayout +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/SearchDropTargetBar" android:layout_width="@dimen/qsb_bar_height" android:layout_height="match_parent"> <!-- Global search icon --> @@ -24,6 +23,7 @@ android:id="@+id/search_button" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_alignParentTop="true" android:src="@drawable/ic_home_search_normal_holo" android:adjustViewBounds="true" android:onClick="onClickSearchButton" @@ -31,24 +31,17 @@ android:clickable="true" android:contentDescription="@string/accessibility_search_button" /> - <ImageView - style="@style/SearchButtonDivider" - android:id="@+id/search_divider" - android:src="@drawable/divider_launcher_holo" - android:onClick="onClickSearchButton" - android:focusable="false" - android:clickable="true" /> - <!-- Voice search icon --> <com.android.launcher2.HolographicImageView style="@style/SearchButton" android:id="@+id/voice_button" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_alignParentBottom="true" android:src="@drawable/ic_home_voice_search_holo" android:adjustViewBounds="true" android:onClick="onClickVoiceButton" android:focusable="true" android:clickable="true" android:contentDescription="@string/accessibility_voice_search_button" /> -</LinearLayout> +</RelativeLayout> |