diff options
author | Wu-cheng Li <wuchengli@google.com> | 2011-07-05 17:54:29 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2011-07-18 05:26:47 +0800 |
commit | 750173a4d20f1e8d6607edb3ada6be5166d0cd82 (patch) | |
tree | 783701cf389c5b1f63efc43ed01bb712959ea8c0 /res/values | |
parent | 5281216188a75f5a2edd87ef5f7358a956f17e28 (diff) | |
download | LegacyCamera-750173a4d20f1e8d6607edb3ada6be5166d0cd82.zip LegacyCamera-750173a4d20f1e8d6607edb3ada6be5166d0cd82.tar.gz LegacyCamera-750173a4d20f1e8d6607edb3ada6be5166d0cd82.tar.bz2 |
Add a share application list in share popup.
bug:4725978
Change-Id: Id7a8b24fd7785f2d7dd316b5000f8ae3f3e8c567
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/colors.xml | 1 | ||||
-rw-r--r-- | res/values/dimens.xml | 1 | ||||
-rw-r--r-- | res/values/ids.xml | 19 | ||||
-rw-r--r-- | res/values/styles.xml | 4 |
4 files changed, 6 insertions, 19 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml index 8a1652a..96d269f 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -24,4 +24,5 @@ <color name="review_control_pressed_color">#FF6899FF</color> <color name="icon_disabled_color">#DD777777</color> <color name="time_lapse_arc">#FFC5C5C5</color> + <color name="dark_gray">#151515</color> </resources> diff --git a/res/values/dimens.xml b/res/values/dimens.xml index cd42854..7978d9c 100644 --- a/res/values/dimens.xml +++ b/res/values/dimens.xml @@ -23,4 +23,5 @@ <dimen name="share_image_max_height_landscape">240dp</dimen> <dimen name="share_image_max_width_portrait">240dp</dimen> <dimen name="share_image_max_height_portrait">240dp</dimen> + <dimen name="share_list_width_landscape">180dp</dimen> </resources> diff --git a/res/values/ids.xml b/res/values/ids.xml deleted file mode 100644 index 81d920f..0000000 --- a/res/values/ids.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?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. ---> - -<resources> - <item type="id" name="btn_gallery" /> -</resources> diff --git a/res/values/styles.xml b/res/values/styles.xml index 05c28a0..520ae31 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -117,4 +117,8 @@ <item name="android:textSize">16dp</item> <item name="android:background">@drawable/bg_text_on_preview</item> </style> + <style name="AnimationPopup" parent="android:Animation"> + <item name="android:windowEnterAnimation">@anim/grow_fade_in_from_top_right</item> + <item name="android:windowExitAnimation">@anim/shrink_fade_out_from_top_right</item> + </style> </resources> |