diff options
Diffstat (limited to 'res/drawable')
56 files changed, 141 insertions, 0 deletions
diff --git a/res/drawable/bg_gadget_error.9.png b/res/drawable/bg_gadget_error.9.png Binary files differnew file mode 100644 index 0000000..5077424 --- /dev/null +++ b/res/drawable/bg_gadget_error.9.png diff --git a/res/drawable/box_launcher_bottom.9.png b/res/drawable/box_launcher_bottom.9.png Binary files differnew file mode 100755 index 0000000..f4cc1fa --- /dev/null +++ b/res/drawable/box_launcher_bottom.9.png diff --git a/res/drawable/box_launcher_top.xml b/res/drawable/box_launcher_top.xml new file mode 100644 index 0000000..20c07c4 --- /dev/null +++ b/res/drawable/box_launcher_top.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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_pressed="true" android:drawable="@drawable/box_launcher_top_pressed" /> + <item android:state_focused="true" android:state_window_focused="true" android:drawable="@drawable/box_launcher_top_selected" /> + <item android:state_focused="true" android:state_window_focused="false" android:drawable="@drawable/box_launcher_top_normal" /> + <item android:drawable="@drawable/box_launcher_top_normal" /> +</selector> + diff --git a/res/drawable/box_launcher_top_normal.9.png b/res/drawable/box_launcher_top_normal.9.png Binary files differnew file mode 100644 index 0000000..abaff95 --- /dev/null +++ b/res/drawable/box_launcher_top_normal.9.png diff --git a/res/drawable/box_launcher_top_pressed.9.png b/res/drawable/box_launcher_top_pressed.9.png Binary files differnew file mode 100644 index 0000000..4e163d4 --- /dev/null +++ b/res/drawable/box_launcher_top_pressed.9.png diff --git a/res/drawable/box_launcher_top_selected.9.png b/res/drawable/box_launcher_top_selected.9.png Binary files differnew file mode 100644 index 0000000..01b1c4e --- /dev/null +++ b/res/drawable/box_launcher_top_selected.9.png diff --git a/res/drawable/delete_zone_selector.xml b/res/drawable/delete_zone_selector.xml new file mode 100644 index 0000000..6c917da --- /dev/null +++ b/res/drawable/delete_zone_selector.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2007, 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. +*/ +--> + +<transition xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/delete_handle_normal" /> + <item android:drawable="@drawable/delete_handle" /> +</transition> diff --git a/res/drawable/focused_application_background.9.png b/res/drawable/focused_application_background.9.png Binary files differnew file mode 100644 index 0000000..9d09b41 --- /dev/null +++ b/res/drawable/focused_application_background.9.png diff --git a/res/drawable/google_logo.png b/res/drawable/google_logo.png Binary files differnew file mode 100644 index 0000000..54fd5f9 --- /dev/null +++ b/res/drawable/google_logo.png diff --git a/res/drawable/grid_selector.xml b/res/drawable/grid_selector.xml new file mode 100644 index 0000000..009cfe1 --- /dev/null +++ b/res/drawable/grid_selector.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2007, 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_pressed="true" android:drawable="@drawable/pressed_application_background" /> + <item android:state_focused="false" android:drawable="@drawable/focused_application_background" /> + <item android:state_window_focused="true" android:drawable="@drawable/focused_application_background" /> + <item android:state_window_focused="false" android:drawable="@android:color/transparent" /> +</selector> diff --git a/res/drawable/handle.xml b/res/drawable/handle.xml new file mode 100644 index 0000000..b184a56 --- /dev/null +++ b/res/drawable/handle.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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_window_focused="false" android:state_enabled="true" android:drawable="@drawable/tray_handle_normal" /> + <item android:state_pressed="true" android:drawable="@drawable/tray_handle_pressed" /> + <item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/tray_handle_selected" /> + <item android:state_enabled="true" android:drawable="@drawable/tray_handle_normal" /> + <item android:state_focused="true" android:drawable="@drawable/tray_handle_selected" /> +</selector> diff --git a/res/drawable/handle_icon.xml b/res/drawable/handle_icon.xml new file mode 100644 index 0000000..20e16b4 --- /dev/null +++ b/res/drawable/handle_icon.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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. +--> + +<transition xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/ic_tray_expand" /> + <item android:drawable="@drawable/ic_tray_collapse" /> +</transition> diff --git a/res/drawable/ic_launcher_application.png b/res/drawable/ic_launcher_application.png Binary files differnew file mode 100644 index 0000000..7502484 --- /dev/null +++ b/res/drawable/ic_launcher_application.png diff --git a/res/drawable/ic_launcher_empty.png b/res/drawable/ic_launcher_empty.png Binary files differnew file mode 100644 index 0000000..59bb6c5 --- /dev/null +++ b/res/drawable/ic_launcher_empty.png diff --git a/res/drawable/ic_launcher_folder.png b/res/drawable/ic_launcher_folder.png Binary files differnew file mode 100644 index 0000000..ed31ba5 --- /dev/null +++ b/res/drawable/ic_launcher_folder.png diff --git a/res/drawable/ic_launcher_folder_open.png b/res/drawable/ic_launcher_folder_open.png Binary files differnew file mode 100644 index 0000000..0723014 --- /dev/null +++ b/res/drawable/ic_launcher_folder_open.png diff --git a/res/drawable/ic_launcher_gadget.png b/res/drawable/ic_launcher_gadget.png Binary files differnew file mode 100644 index 0000000..cb40a19 --- /dev/null +++ b/res/drawable/ic_launcher_gadget.png diff --git a/res/drawable/ic_launcher_gallery.png b/res/drawable/ic_launcher_gallery.png Binary files differnew file mode 100755 index 0000000..965fb71 --- /dev/null +++ b/res/drawable/ic_launcher_gallery.png diff --git a/res/drawable/ic_launcher_home.png b/res/drawable/ic_launcher_home.png Binary files differnew file mode 100755 index 0000000..84af2a2 --- /dev/null +++ b/res/drawable/ic_launcher_home.png diff --git a/res/drawable/ic_search_gadget.png b/res/drawable/ic_search_gadget.png Binary files differnew file mode 100644 index 0000000..0a4d8f4 --- /dev/null +++ b/res/drawable/ic_search_gadget.png diff --git a/res/drawable/pressed_application_background.9.png b/res/drawable/pressed_application_background.9.png Binary files differnew file mode 100644 index 0000000..b09f595 --- /dev/null +++ b/res/drawable/pressed_application_background.9.png diff --git a/res/drawable/shortcut_selector.xml b/res/drawable/shortcut_selector.xml new file mode 100644 index 0000000..884bccf --- /dev/null +++ b/res/drawable/shortcut_selector.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** +** Copyright 2007, 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_pressed="true" android:drawable="@drawable/pressed_application_background" /> + <item android:state_window_focused="true" android:state_focused="true" android:drawable="@drawable/focused_application_background" /> + <item android:state_window_focused="false" android:state_focused="true" android:drawable="@android:color/transparent" /> +</selector> diff --git a/res/drawable/texture_brushed_steel.png b/res/drawable/texture_brushed_steel.png Binary files differnew file mode 100644 index 0000000..73b3dfe --- /dev/null +++ b/res/drawable/texture_brushed_steel.png diff --git a/res/drawable/wallpaper_beach.jpg b/res/drawable/wallpaper_beach.jpg Binary files differnew file mode 100644 index 0000000..b502092 --- /dev/null +++ b/res/drawable/wallpaper_beach.jpg diff --git a/res/drawable/wallpaper_beach_small.jpg b/res/drawable/wallpaper_beach_small.jpg Binary files differnew file mode 100644 index 0000000..46051cc --- /dev/null +++ b/res/drawable/wallpaper_beach_small.jpg diff --git a/res/drawable/wallpaper_blue.jpg b/res/drawable/wallpaper_blue.jpg Binary files differnew file mode 100644 index 0000000..0edd6bd --- /dev/null +++ b/res/drawable/wallpaper_blue.jpg diff --git a/res/drawable/wallpaper_blue_small.jpg b/res/drawable/wallpaper_blue_small.jpg Binary files differnew file mode 100644 index 0000000..5cf585a --- /dev/null +++ b/res/drawable/wallpaper_blue_small.jpg diff --git a/res/drawable/wallpaper_dale_chihuly.jpg b/res/drawable/wallpaper_dale_chihuly.jpg new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/res/drawable/wallpaper_dale_chihuly.jpg diff --git a/res/drawable/wallpaper_dale_chihuly_small.jpg b/res/drawable/wallpaper_dale_chihuly_small.jpg new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/res/drawable/wallpaper_dale_chihuly_small.jpg diff --git a/res/drawable/wallpaper_green.jpg b/res/drawable/wallpaper_green.jpg Binary files differnew file mode 100644 index 0000000..36c9e08 --- /dev/null +++ b/res/drawable/wallpaper_green.jpg diff --git a/res/drawable/wallpaper_green_small.jpg b/res/drawable/wallpaper_green_small.jpg Binary files differnew file mode 100644 index 0000000..d7c28ec --- /dev/null +++ b/res/drawable/wallpaper_green_small.jpg diff --git a/res/drawable/wallpaper_grey.jpg b/res/drawable/wallpaper_grey.jpg Binary files differnew file mode 100644 index 0000000..ca48e6a --- /dev/null +++ b/res/drawable/wallpaper_grey.jpg diff --git a/res/drawable/wallpaper_grey_small.jpg b/res/drawable/wallpaper_grey_small.jpg Binary files differnew file mode 100644 index 0000000..1734d2e --- /dev/null +++ b/res/drawable/wallpaper_grey_small.jpg diff --git a/res/drawable/wallpaper_jellyfish.jpg b/res/drawable/wallpaper_jellyfish.jpg Binary files differnew file mode 100644 index 0000000..659228b --- /dev/null +++ b/res/drawable/wallpaper_jellyfish.jpg diff --git a/res/drawable/wallpaper_jellyfish_small.jpg b/res/drawable/wallpaper_jellyfish_small.jpg Binary files differnew file mode 100644 index 0000000..4e5d134 --- /dev/null +++ b/res/drawable/wallpaper_jellyfish_small.jpg diff --git a/res/drawable/wallpaper_john_maeda.jpg b/res/drawable/wallpaper_john_maeda.jpg new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/res/drawable/wallpaper_john_maeda.jpg diff --git a/res/drawable/wallpaper_john_maeda_small.jpg b/res/drawable/wallpaper_john_maeda_small.jpg new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/res/drawable/wallpaper_john_maeda_small.jpg diff --git a/res/drawable/wallpaper_lake_small.jpg b/res/drawable/wallpaper_lake_small.jpg Binary files differnew file mode 100644 index 0000000..36d56cc --- /dev/null +++ b/res/drawable/wallpaper_lake_small.jpg diff --git a/res/drawable/wallpaper_marc_ecko.jpg b/res/drawable/wallpaper_marc_ecko.jpg new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/res/drawable/wallpaper_marc_ecko.jpg diff --git a/res/drawable/wallpaper_marc_ecko_small.jpg b/res/drawable/wallpaper_marc_ecko_small.jpg new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/res/drawable/wallpaper_marc_ecko_small.jpg diff --git a/res/drawable/wallpaper_mountain.jpg b/res/drawable/wallpaper_mountain.jpg Binary files differnew file mode 100644 index 0000000..1376177 --- /dev/null +++ b/res/drawable/wallpaper_mountain.jpg diff --git a/res/drawable/wallpaper_mountain_small.jpg b/res/drawable/wallpaper_mountain_small.jpg Binary files differnew file mode 100644 index 0000000..e2d5ac2 --- /dev/null +++ b/res/drawable/wallpaper_mountain_small.jpg diff --git a/res/drawable/wallpaper_path.jpg b/res/drawable/wallpaper_path.jpg Binary files differnew file mode 100644 index 0000000..e1c98c0 --- /dev/null +++ b/res/drawable/wallpaper_path.jpg diff --git a/res/drawable/wallpaper_path_small.jpg b/res/drawable/wallpaper_path_small.jpg Binary files differnew file mode 100644 index 0000000..f47d7a7 --- /dev/null +++ b/res/drawable/wallpaper_path_small.jpg diff --git a/res/drawable/wallpaper_pink.jpg b/res/drawable/wallpaper_pink.jpg Binary files differnew file mode 100644 index 0000000..74403e5 --- /dev/null +++ b/res/drawable/wallpaper_pink.jpg diff --git a/res/drawable/wallpaper_pink_small.jpg b/res/drawable/wallpaper_pink_small.jpg Binary files differnew file mode 100644 index 0000000..42b1770 --- /dev/null +++ b/res/drawable/wallpaper_pink_small.jpg diff --git a/res/drawable/wallpaper_road.jpg b/res/drawable/wallpaper_road.jpg Binary files differnew file mode 100644 index 0000000..3aaa639 --- /dev/null +++ b/res/drawable/wallpaper_road.jpg diff --git a/res/drawable/wallpaper_road_small.jpg b/res/drawable/wallpaper_road_small.jpg Binary files differnew file mode 100644 index 0000000..0b0c390 --- /dev/null +++ b/res/drawable/wallpaper_road_small.jpg diff --git a/res/drawable/wallpaper_snow_leopard.jpg b/res/drawable/wallpaper_snow_leopard.jpg Binary files differnew file mode 100644 index 0000000..bcbc51e --- /dev/null +++ b/res/drawable/wallpaper_snow_leopard.jpg diff --git a/res/drawable/wallpaper_snow_leopard_small.jpg b/res/drawable/wallpaper_snow_leopard_small.jpg Binary files differnew file mode 100644 index 0000000..99db5c6 --- /dev/null +++ b/res/drawable/wallpaper_snow_leopard_small.jpg diff --git a/res/drawable/wallpaper_sunrise.jpg b/res/drawable/wallpaper_sunrise.jpg Binary files differnew file mode 100644 index 0000000..4ee8d5d --- /dev/null +++ b/res/drawable/wallpaper_sunrise.jpg diff --git a/res/drawable/wallpaper_sunrise_small.jpg b/res/drawable/wallpaper_sunrise_small.jpg Binary files differnew file mode 100644 index 0000000..248b7e7 --- /dev/null +++ b/res/drawable/wallpaper_sunrise_small.jpg diff --git a/res/drawable/wallpaper_sunset.jpg b/res/drawable/wallpaper_sunset.jpg Binary files differnew file mode 100644 index 0000000..bcfd8d4 --- /dev/null +++ b/res/drawable/wallpaper_sunset.jpg diff --git a/res/drawable/wallpaper_sunset_small.jpg b/res/drawable/wallpaper_sunset_small.jpg Binary files differnew file mode 100644 index 0000000..d5e5add --- /dev/null +++ b/res/drawable/wallpaper_sunset_small.jpg diff --git a/res/drawable/wallpaper_zanzibar.jpg b/res/drawable/wallpaper_zanzibar.jpg Binary files differnew file mode 100644 index 0000000..fb13374 --- /dev/null +++ b/res/drawable/wallpaper_zanzibar.jpg diff --git a/res/drawable/wallpaper_zanzibar_small.jpg b/res/drawable/wallpaper_zanzibar_small.jpg Binary files differnew file mode 100644 index 0000000..700a7fe --- /dev/null +++ b/res/drawable/wallpaper_zanzibar_small.jpg |