diff options
author | Winson Chung <winsonc@google.com> | 2010-08-09 16:03:15 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2010-08-16 15:51:43 -0700 |
commit | 80baf5a6b3c62a62265f626d43d1167783c94131 (patch) | |
tree | da3dba4d3920ffbae802ab256c19d5f0b590089b /res/anim | |
parent | 321e9ee68848d9e782fd557f69cc070308ffbc9c (diff) | |
download | packages_apps_Trebuchet-80baf5a6b3c62a62265f626d43d1167783c94131.tar.gz packages_apps_Trebuchet-80baf5a6b3c62a62265f626d43d1167783c94131.tar.bz2 packages_apps_Trebuchet-80baf5a6b3c62a62265f626d43d1167783c94131.zip |
Adding paging for the widget/shortcut/folder customization area and fixing bugs.
Adding pages for customization drawer with initial implementation of proposed flow
layout for widgets. Fixes for keeping all apps, and widgets in sync with Launcher
Model, optimizations for reloading all apps pages when invalidating. Adding some
animations for tab transitions and feedback when long pressing to add certain items.
Change-Id: I8d51749f3a91c964bed35681f3a9192200b0d93e
Diffstat (limited to 'res/anim')
-rw-r--r-- | res/anim/paged_view_click_feedback.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/res/anim/paged_view_click_feedback.xml b/res/anim/paged_view_click_feedback.xml new file mode 100644 index 000000000..786d9744a --- /dev/null +++ b/res/anim/paged_view_click_feedback.xml @@ -0,0 +1,23 @@ +<?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. +--> + +<alpha xmlns:android="http://schemas.android.com/apk/res/android" + android:fromAlpha="1.0" + android:toAlpha="0.65" + android:duration="100" + android:fillAfter="true" + android:repeatCount="1" + android:repeatMode="reverse" /> |