diff options
author | Romain Guy <romainguy@android.com> | 2009-07-16 13:21:01 -0700 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2009-07-16 16:06:48 -0700 |
commit | 1dd3a077a293bf3ac4e61e91dcc3dfc99487acd4 (patch) | |
tree | c9d861aa9f735392b25d402987acb312bc50b6c4 /res/drawable | |
parent | 68634c1c320bba0d9a49c2ad6ed78e244e89a57b (diff) | |
download | packages_apps_trebuchet-1dd3a077a293bf3ac4e61e91dcc3dfc99487acd4.zip packages_apps_trebuchet-1dd3a077a293bf3ac4e61e91dcc3dfc99487acd4.tar.gz packages_apps_trebuchet-1dd3a077a293bf3ac4e61e91dcc3dfc99487acd4.tar.bz2 |
New gestures UI.
Diffstat (limited to 'res/drawable')
21 files changed, 69 insertions, 24 deletions
diff --git a/res/drawable/btn_circle.xml b/res/drawable/btn_add.xml index 9208010..1345fd1 100644 --- a/res/drawable/btn_circle.xml +++ b/res/drawable/btn_add.xml @@ -16,17 +16,11 @@ <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_window_focused="false" android:state_enabled="true" - android:drawable="@drawable/btn_circle_normal" /> - <item android:state_window_focused="false" android:state_enabled="false" - android:drawable="@drawable/btn_circle_disable" /> + android:drawable="@drawable/plus_normal" /> <item android:state_pressed="true" - android:drawable="@drawable/btn_circle_pressed" /> + android:drawable="@drawable/plus_pressed" /> <item android:state_focused="true" android:state_enabled="true" - android:drawable="@drawable/btn_circle_selected" /> + android:drawable="@drawable/plus_selected" /> <item android:state_enabled="true" - android:drawable="@drawable/btn_circle_normal" /> - <item android:state_focused="true" - android:drawable="@drawable/btn_circle_disable_focused" /> - <item - android:drawable="@drawable/btn_circle_disable" /> + android:drawable="@drawable/plus_normal" /> </selector> diff --git a/res/drawable/btn_circle_disable.png b/res/drawable/btn_circle_disable.png Binary files differdeleted file mode 100644 index 33b74a6..0000000 --- a/res/drawable/btn_circle_disable.png +++ /dev/null diff --git a/res/drawable/btn_circle_disable_focused.png b/res/drawable/btn_circle_disable_focused.png Binary files differdeleted file mode 100644 index 005ad8d..0000000 --- a/res/drawable/btn_circle_disable_focused.png +++ /dev/null diff --git a/res/drawable/btn_circle_normal.png b/res/drawable/btn_circle_normal.png Binary files differdeleted file mode 100644 index fc5af1c..0000000 --- a/res/drawable/btn_circle_normal.png +++ /dev/null diff --git a/res/drawable/btn_circle_pressed.png b/res/drawable/btn_circle_pressed.png Binary files differdeleted file mode 100644 index 8f40afd..0000000 --- a/res/drawable/btn_circle_pressed.png +++ /dev/null diff --git a/res/drawable/btn_circle_selected.png b/res/drawable/btn_circle_selected.png Binary files differdeleted file mode 100644 index c74fac2..0000000 --- a/res/drawable/btn_circle_selected.png +++ /dev/null diff --git a/res/drawable/btn_g.xml b/res/drawable/btn_g.xml new file mode 100644 index 0000000..d033b43 --- /dev/null +++ b/res/drawable/btn_g.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 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/g_normal" /> + <item android:state_pressed="true" + android:drawable="@drawable/g_pressed" /> + <item android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/g_selected" /> + <item android:state_enabled="true" + android:drawable="@drawable/g_normal" /> +</selector> diff --git a/res/drawable/btn_list.xml b/res/drawable/btn_list.xml new file mode 100644 index 0000000..84a033e --- /dev/null +++ b/res/drawable/btn_list.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 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/list_normal" /> + <item android:state_pressed="true" + android:drawable="@drawable/list_pressed" /> + <item android:state_focused="true" android:state_enabled="true" + android:drawable="@drawable/list_selected" /> + <item android:state_enabled="true" + android:drawable="@drawable/list_normal" /> +</selector> diff --git a/res/drawable/g_normal.png b/res/drawable/g_normal.png Binary files differnew file mode 100644 index 0000000..2ae9703 --- /dev/null +++ b/res/drawable/g_normal.png diff --git a/res/drawable/g_pressed.png b/res/drawable/g_pressed.png Binary files differnew file mode 100644 index 0000000..13667dc --- /dev/null +++ b/res/drawable/g_pressed.png diff --git a/res/drawable/g_selected.png b/res/drawable/g_selected.png Binary files differnew file mode 100644 index 0000000..faed865 --- /dev/null +++ b/res/drawable/g_selected.png diff --git a/res/drawable/gestures_background.xml b/res/drawable/gestures_background.xml index 34ec051..59c11dc 100755..100644 --- a/res/drawable/gestures_background.xml +++ b/res/drawable/gestures_background.xml @@ -1,20 +1,19 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- - Copyright (C) 2009 Romain Guy +<!-- Copyright (C) 2009 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 + 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 + 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. + 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. --> -<bitmap xmlns:android="http://schemas.android.com/apk/res/android" - android:src="@drawable/texture_paper" - android:tileMode="repeat" /> +<nine-patch xmlns:android="http://schemas.android.com/apk/res/android" + android:src="@drawable/gestures_frame" + android:dither="true" /> diff --git a/res/drawable/gestures_frame.9.png b/res/drawable/gestures_frame.9.png Binary files differnew file mode 100644 index 0000000..c5f5640 --- /dev/null +++ b/res/drawable/gestures_frame.9.png diff --git a/res/drawable/ic_btn_round_plus.png b/res/drawable/ic_btn_round_plus.png Binary files differdeleted file mode 100644 index 1ec8a95..0000000 --- a/res/drawable/ic_btn_round_plus.png +++ /dev/null diff --git a/res/drawable/list_normal.png b/res/drawable/list_normal.png Binary files differnew file mode 100644 index 0000000..ee05949 --- /dev/null +++ b/res/drawable/list_normal.png diff --git a/res/drawable/list_pressed.png b/res/drawable/list_pressed.png Binary files differnew file mode 100644 index 0000000..8e3c68c --- /dev/null +++ b/res/drawable/list_pressed.png diff --git a/res/drawable/list_selected.png b/res/drawable/list_selected.png Binary files differnew file mode 100644 index 0000000..93858f4 --- /dev/null +++ b/res/drawable/list_selected.png diff --git a/res/drawable/plus_normal.png b/res/drawable/plus_normal.png Binary files differnew file mode 100644 index 0000000..ddc5888 --- /dev/null +++ b/res/drawable/plus_normal.png diff --git a/res/drawable/plus_pressed.png b/res/drawable/plus_pressed.png Binary files differnew file mode 100644 index 0000000..872f092 --- /dev/null +++ b/res/drawable/plus_pressed.png diff --git a/res/drawable/plus_selected.png b/res/drawable/plus_selected.png Binary files differnew file mode 100644 index 0000000..32c441f --- /dev/null +++ b/res/drawable/plus_selected.png diff --git a/res/drawable/texture_paper.jpg b/res/drawable/texture_paper.jpg Binary files differdeleted file mode 100644 index 27f4fd6..0000000 --- a/res/drawable/texture_paper.jpg +++ /dev/null |