diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-xlarge-mdpi/focused_bg.9.png | bin | 0 -> 2864 bytes | |||
-rw-r--r-- | res/drawable-xlarge/button_bg.xml | 1 | ||||
-rw-r--r-- | res/drawable-xlarge/focusable_view_bg.xml | 19 | ||||
-rw-r--r-- | res/layout-xlarge-land/application.xml | 4 | ||||
-rw-r--r-- | res/layout-xlarge/all_apps_no_items_placeholder.xml | 3 | ||||
-rw-r--r-- | res/layout-xlarge/all_apps_paged_view_application.xml | 5 | ||||
-rw-r--r-- | res/layout-xlarge/all_apps_tabbed.xml | 15 | ||||
-rw-r--r-- | res/layout-xlarge/button_bar.xml | 106 | ||||
-rw-r--r-- | res/layout-xlarge/customization_drawer.xml | 2 | ||||
-rw-r--r-- | res/layout-xlarge/customize_paged_view_item.xml | 5 | ||||
-rw-r--r-- | res/layout-xlarge/customize_paged_view_wallpaper.xml | 5 | ||||
-rw-r--r-- | res/layout-xlarge/customize_paged_view_widget.xml | 5 | ||||
-rw-r--r-- | res/layout-xlarge/launcher.xml | 15 | ||||
-rw-r--r-- | res/layout-xlarge/tab_widget_indicator.xml | 2 |
14 files changed, 116 insertions, 71 deletions
diff --git a/res/drawable-xlarge-mdpi/focused_bg.9.png b/res/drawable-xlarge-mdpi/focused_bg.9.png Binary files differnew file mode 100644 index 0000000..1b0d3fa --- /dev/null +++ b/res/drawable-xlarge-mdpi/focused_bg.9.png diff --git a/res/drawable-xlarge/button_bg.xml b/res/drawable-xlarge/button_bg.xml index 9e6e1ff..2cb7926 100644 --- a/res/drawable-xlarge/button_bg.xml +++ b/res/drawable-xlarge/button_bg.xml @@ -15,6 +15,7 @@ --> <selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_focused="true" android:drawable="@drawable/focused_bg" /> <item android:state_pressed="true" android:drawable="@drawable/home_press" /> <item android:drawable="@android:color/transparent" /> </selector> diff --git a/res/drawable-xlarge/focusable_view_bg.xml b/res/drawable-xlarge/focusable_view_bg.xml new file mode 100644 index 0000000..fb36bfc --- /dev/null +++ b/res/drawable-xlarge/focusable_view_bg.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + 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. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_focused="true" android:drawable="@drawable/focused_bg" /> +</selector> diff --git a/res/layout-xlarge-land/application.xml b/res/layout-xlarge-land/application.xml index 2598e5a..9393f7e 100644 --- a/res/layout-xlarge-land/application.xml +++ b/res/layout-xlarge-land/application.xml @@ -15,4 +15,6 @@ --> <com.android.launcher2.BubbleTextView xmlns:android="http://schemas.android.com/apk/res/android" - style="@style/WorkspaceIcon.Landscape" /> + style="@style/WorkspaceIcon.Landscape" + android:focusable="true" + android:background="@drawable/focusable_view_bg" /> diff --git a/res/layout-xlarge/all_apps_no_items_placeholder.xml b/res/layout-xlarge/all_apps_no_items_placeholder.xml index 247870c..b766df1 100644 --- a/res/layout-xlarge/all_apps_no_items_placeholder.xml +++ b/res/layout-xlarge/all_apps_no_items_placeholder.xml @@ -32,4 +32,5 @@ android:drawablePadding="0dip" android:maxLines="2" - android:fadingEdge="horizontal" /> + android:fadingEdge="horizontal" + android:focusable="false" /> diff --git a/res/layout-xlarge/all_apps_paged_view_application.xml b/res/layout-xlarge/all_apps_paged_view_application.xml index e5f07bf..16e5d82 100644 --- a/res/layout-xlarge/all_apps_paged_view_application.xml +++ b/res/layout-xlarge/all_apps_paged_view_application.xml @@ -21,9 +21,12 @@ launcher:blurColor="#FF6B8CF0" launcher:outlineColor="#FF8CD2FF" + style="@style/WorkspaceIcon.AllApps" + android:id="@+id/application_icon" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center_horizontal" - style="@style/WorkspaceIcon.AllApps" /> + android:focusable="true" + android:background="@drawable/focusable_view_bg" /> diff --git a/res/layout-xlarge/all_apps_tabbed.xml b/res/layout-xlarge/all_apps_tabbed.xml index 9937338..b00b3c3 100644 --- a/res/layout-xlarge/all_apps_tabbed.xml +++ b/res/layout-xlarge/all_apps_tabbed.xml @@ -32,7 +32,7 @@ android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:background="@drawable/tab_unselected_holo"> - <TabWidget + <com.android.launcher2.FocusOnlyTabWidget android:id="@android:id/tabs" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -50,7 +50,9 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" - android:visibility="invisible"/> + android:visibility="invisible" + android:background="@drawable/focusable_view_bg" + android:focusable="true" /> <TextView android:id="@+id/market_button" android:layout_width="wrap_content" @@ -64,7 +66,9 @@ android:shadowColor="@color/workspace_all_apps_and_delete_zone_text_shadow_color" android:shadowDx="0.0" android:shadowDy="0.0" - android:shadowRadius="2.0" /> + android:shadowRadius="2.0" + android:background="@drawable/focusable_view_bg" + android:focusable="true" /> </FrameLayout> <com.android.launcher2.DeleteZone android:id="@+id/all_apps_delete_zone" @@ -84,7 +88,10 @@ android:shadowColor="@color/workspace_all_apps_and_delete_zone_text_shadow_color" android:shadowDx="0.0" android:shadowDy="0.0" - android:shadowRadius="2.0" /> + android:shadowRadius="2.0" + + android:background="@drawable/focusable_view_bg" + android:focusable="true" /> </RelativeLayout> <FrameLayout android:id="@android:id/tabcontent" diff --git a/res/layout-xlarge/button_bar.xml b/res/layout-xlarge/button_bar.xml index 5c96c5c..618f4e5 100644 --- a/res/layout-xlarge/button_bar.xml +++ b/res/layout-xlarge/button_bar.xml @@ -15,31 +15,33 @@ --> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"> + xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + android:focusable="false"> <!-- Global search icon --> <ImageView - android:id="@+id/search_button" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentTop="true" - android:layout_alignParentLeft="true" - android:paddingLeft="@dimen/toolbar_button_horizontal_padding" - android:paddingRight="@dimen/toolbar_button_horizontal_padding" - android:paddingTop="@dimen/toolbar_button_vertical_padding" - android:paddingBottom="@dimen/toolbar_button_vertical_padding" - android:src="@drawable/ic_generic_search" - android:background="@drawable/button_bg" - android:onClick="onClickSearchButton" - android:focusable="true" - android:clickable="true" /> + android:id="@+id/search_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + android:layout_alignParentLeft="true" + android:paddingLeft="@dimen/toolbar_button_horizontal_padding" + android:paddingRight="@dimen/toolbar_button_horizontal_padding" + android:paddingTop="@dimen/toolbar_button_vertical_padding" + android:paddingBottom="@dimen/toolbar_button_vertical_padding" + android:src="@drawable/ic_generic_search" + android:background="@drawable/button_bg" + android:onClick="onClickSearchButton" + + android:focusable="true" + android:clickable="true" /> <ImageView android:id="@+id/search_divider" android:src="@drawable/divider_launcher_holo" android:layout_width="wrap_content" android:layout_height="match_parent" - android:layout_toRightOf="@id/search_button" + android:layout_toRightOf="@+id/search_button" android:paddingTop="@dimen/toolbar_button_vertical_padding" android:paddingBottom="@dimen/toolbar_button_vertical_padding" @@ -52,7 +54,7 @@ android:id="@+id/voice_button" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_toRightOf="@id/search_divider" + android:layout_toRightOf="@+id/search_divider" android:paddingLeft="@dimen/toolbar_button_horizontal_padding" android:paddingRight="@dimen/toolbar_button_horizontal_padding" android:paddingTop="@dimen/toolbar_button_vertical_padding" @@ -60,35 +62,11 @@ android:src="@drawable/ic_voice_search" android:background="@drawable/button_bg" android:onClick="onClickVoiceButton" - android:focusable="true" - android:clickable="true"/> - - <ImageView - android:id="@+id/configure_button" - android:src="@drawable/ic_home_add_holo_dark" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentTop="true" - android:layout_alignParentRight="true" - android:paddingLeft="@dimen/toolbar_button_horizontal_padding" - android:paddingRight="@dimen/toolbar_button_horizontal_padding" - android:paddingTop="@dimen/toolbar_button_vertical_padding" - android:paddingBottom="@dimen/toolbar_button_vertical_padding" - android:background="@drawable/button_bg" android:focusable="true" - android:clickable="true" /> - <ImageView - android:id="@+id/divider" - android:src="@drawable/divider_launcher_holo" - android:layout_width="wrap_content" - android:layout_height="match_parent" - android:layout_toLeftOf="@id/configure_button" - android:paddingTop="@dimen/toolbar_button_vertical_padding" - android:paddingBottom="@dimen/toolbar_button_vertical_padding" + android:clickable="true"/> - android:focusable="false" - android:clickable="true" /> + <!-- AllApps icon --> <com.android.launcher2.StrokedTextView android:id="@+id/all_apps_button" android:text="@string/all_apps_button_label" @@ -96,12 +74,12 @@ android:drawableLeft="@drawable/ic_home_all_apps_holo_dark" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_toLeftOf="@id/divider" + android:layout_toLeftOf="@+id/all_apps_divider" android:paddingLeft="@dimen/toolbar_button_horizontal_padding" android:paddingRight="@dimen/toolbar_button_horizontal_padding" android:paddingTop="@dimen/all_apps_button_vertical_padding" android:paddingBottom="@dimen/all_apps_button_vertical_padding" - android:background="@drawable/button_bg" + android:background="@drawable/button_bg" android:gravity="center_horizontal|center_vertical" android:textColor="#CCFFFFFF" @@ -118,15 +96,36 @@ android:focusable="true" android:clickable="true" /> + <ImageView - android:id="@+id/divider_during_drag" + android:id="@+id/all_apps_divider" android:src="@drawable/divider_launcher_holo" android:layout_width="wrap_content" android:layout_height="match_parent" - android:layout_toLeftOf="@id/configure_button" + android:layout_toLeftOf="@+id/configure_button" android:paddingTop="@dimen/toolbar_button_vertical_padding" android:paddingBottom="@dimen/toolbar_button_vertical_padding" - android:visibility="gone" /> + + android:focusable="false" + android:clickable="true" /> + + <!-- Customize icon --> + <ImageView + android:id="@+id/configure_button" + android:src="@drawable/ic_home_add_holo_dark" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" + android:layout_alignParentRight="true" + android:paddingLeft="@dimen/toolbar_button_horizontal_padding" + android:paddingRight="@dimen/toolbar_button_horizontal_padding" + android:paddingTop="@dimen/toolbar_button_vertical_padding" + android:paddingBottom="@dimen/toolbar_button_vertical_padding" + android:background="@drawable/button_bg" + android:focusable="true" + /> + + <!-- Delete icon --> <com.android.launcher2.DeleteZone android:id="@+id/delete_zone" android:text="@string/delete_zone_label_workspace" @@ -134,12 +133,12 @@ android:drawableLeft="@drawable/delete_zone_selector" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_alignRight="@id/configure_button" + android:layout_alignRight="@+id/configure_button" android:paddingLeft="@dimen/toolbar_button_horizontal_padding" android:paddingRight="@dimen/toolbar_button_horizontal_padding" android:paddingTop="@dimen/toolbar_button_vertical_padding" android:paddingBottom="@dimen/toolbar_button_vertical_padding" - android:background="@drawable/button_bg" + android:background="@drawable/button_bg" android:gravity="center_horizontal|center_vertical" android:textColor="@color/workspace_all_apps_and_delete_zone_text_color" @@ -150,5 +149,8 @@ android:shadowRadius="2.0" android:visibility="gone" - launcher:direction="horizontal" /> -</RelativeLayout>
\ No newline at end of file + launcher:direction="horizontal" + + android:focusable="true" + /> +</RelativeLayout> diff --git a/res/layout-xlarge/customization_drawer.xml b/res/layout-xlarge/customization_drawer.xml index a8f6ce0..d8db066 100644 --- a/res/layout-xlarge/customization_drawer.xml +++ b/res/layout-xlarge/customization_drawer.xml @@ -22,7 +22,7 @@ android:layout_height="match_parent"> <!-- The layout_width of this RelativeLayout gets overwritten in CustomizeTrayTabHost.onFinishInflate --> - <TabWidget + <com.android.launcher2.FocusOnlyTabWidget android:id="@android:id/tabs" android:layout_width="wrap_content" android:layout_height="wrap_content" diff --git a/res/layout-xlarge/customize_paged_view_item.xml b/res/layout-xlarge/customize_paged_view_item.xml index b2e5f08..80d678e 100644 --- a/res/layout-xlarge/customize_paged_view_item.xml +++ b/res/layout-xlarge/customize_paged_view_item.xml @@ -25,4 +25,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" - style="@style/WorkspaceIcon.Landscape" /> + style="@style/WorkspaceIcon.Landscape" + + android:background="@drawable/focusable_view_bg" + android:focusable="true" /> diff --git a/res/layout-xlarge/customize_paged_view_wallpaper.xml b/res/layout-xlarge/customize_paged_view_wallpaper.xml index 8c5abc8..d6284c2 100644 --- a/res/layout-xlarge/customize_paged_view_wallpaper.xml +++ b/res/layout-xlarge/customize_paged_view_wallpaper.xml @@ -25,7 +25,10 @@ android:paddingBottom="50dp" launcher:blurColor="#FF6B8CF0" - launcher:outlineColor="#FF8CD2FF"> + launcher:outlineColor="#FF8CD2FF" + + android:background="@drawable/focusable_view_bg" + android:focusable="true"> <!-- The preview image for the wallpaper. --> <ImageView diff --git a/res/layout-xlarge/customize_paged_view_widget.xml b/res/layout-xlarge/customize_paged_view_widget.xml index c0b4552..35791f5 100644 --- a/res/layout-xlarge/customize_paged_view_widget.xml +++ b/res/layout-xlarge/customize_paged_view_widget.xml @@ -25,7 +25,10 @@ android:paddingBottom="50dp" launcher:blurColor="#FF6B8CF0" - launcher:outlineColor="#FF8CD2FF"> + launcher:outlineColor="#FF8CD2FF" + + android:background="@drawable/focusable_view_bg" + android:focusable="true"> <!-- The icon of the widget. --> <ImageView diff --git a/res/layout-xlarge/launcher.xml b/res/layout-xlarge/launcher.xml index acf62f9..c71d131 100644 --- a/res/layout-xlarge/launcher.xml +++ b/res/layout-xlarge/launcher.xml @@ -20,7 +20,8 @@ android:id="@+id/drag_layer" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:focusable="false"> <!-- The workspace contains 5 screens of cells --> <com.android.launcher2.Workspace @@ -41,6 +42,12 @@ <include android:id="@+id/cell5" layout="@layout/workspace_screen" /> </com.android.launcher2.Workspace> + <include layout="@layout/button_bar" + android:id="@+id/all_apps_button_cluster" + android:layout_width="fill_parent" + android:layout_height="?android:attr/actionBarSize" + android:layout_gravity="top" /> + <include layout="@layout/all_apps_tabbed" android:id="@+id/all_apps_view" @@ -48,12 +55,6 @@ android:layout_height="match_parent" android:layout_gravity="top" /> - <include layout="@layout/button_bar" - android:id="@+id/all_apps_button_cluster" - android:layout_width="fill_parent" - android:layout_height="?android:attr/actionBarSize" - android:layout_gravity="top" /> - <include layout="@layout/customization_drawer" android:id="@+id/customization_drawer" android:layout_width="match_parent" diff --git a/res/layout-xlarge/tab_widget_indicator.xml b/res/layout-xlarge/tab_widget_indicator.xml index 7794e29..8968c2a 100644 --- a/res/layout-xlarge/tab_widget_indicator.xml +++ b/res/layout-xlarge/tab_widget_indicator.xml @@ -14,6 +14,6 @@ limitations under the License. --> -<TextView +<com.android.launcher2.AccessibleTabView xmlns:android="http://schemas.android.com/apk/res/android" style="@style/TabIndicator" /> |