diff options
author | Angus Kong <shkong@google.com> | 2011-09-07 08:10:55 +0800 |
---|---|---|
committer | Angus Kong <shkong@google.com> | 2011-09-08 07:10:14 +0800 |
commit | 2f9ed6f52580b8fecb77ec3ca123a804eea89f8c (patch) | |
tree | 5a7dd7a9a482114af3eee39c91937d6212f21247 /res/anim | |
parent | 2670b3d7c318604f07b680b22360d349103144be (diff) | |
download | LegacyCamera-2f9ed6f52580b8fecb77ec3ca123a804eea89f8c.tar.gz LegacyCamera-2f9ed6f52580b8fecb77ec3ca123a804eea89f8c.tar.bz2 LegacyCamera-2f9ed6f52580b8fecb77ec3ca123a804eea89f8c.zip |
A customized dialog for preparing low-res review.
According to UI spec, a customized dialog is needed. The customized dialog has a rounded rectangle
as a background and a spinner over a text view.
bug:5244268
Change-Id: I21a5709babbaf92e507c8900a8cfb322e29bae4c
Diffstat (limited to 'res/anim')
-rw-r--r-- | res/anim/fade_in_quick.xml | 22 | ||||
-rw-r--r-- | res/anim/fade_out_quick.xml | 22 |
2 files changed, 44 insertions, 0 deletions
diff --git a/res/anim/fade_in_quick.xml b/res/anim/fade_in_quick.xml new file mode 100644 index 00000000..80d827d3 --- /dev/null +++ b/res/anim/fade_in_quick.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> + +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:propertyName="alpha" + android:duration="200" + android:valueFrom="0.0" + android:valueTo="1.0" + android:valueType="floatType"/> diff --git a/res/anim/fade_out_quick.xml b/res/anim/fade_out_quick.xml new file mode 100644 index 00000000..9659c4b4 --- /dev/null +++ b/res/anim/fade_out_quick.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 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. +--> + +<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:propertyName="alpha" + android:duration="200" + android:valueFrom="1.0" + android:valueTo="0.0" + android:valueType="floatType" /> |