Merge change 26130 into eclair
* changes: Turn animations on by default.
This commit is contained in:
@@ -790,8 +790,8 @@ public class Activity extends ContextThemeWrapper
|
||||
* @see #onPostCreate
|
||||
*/
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
mVisibleFromClient = mWindow.getWindowStyle().getBoolean(
|
||||
com.android.internal.R.styleable.Window_windowNoDisplay, true);
|
||||
mVisibleFromClient = !mWindow.getWindowStyle().getBoolean(
|
||||
com.android.internal.R.styleable.Window_windowNoDisplay, false);
|
||||
mCalled = true;
|
||||
}
|
||||
|
||||
|
||||
@@ -2317,6 +2317,18 @@ public class Intent implements Parcelable {
|
||||
* specified.
|
||||
*/
|
||||
public static final int FLAG_ACTIVITY_REORDER_TO_FRONT = 0X00020000;
|
||||
/**
|
||||
* If set in an Intent passed to {@link Context#startActivity Context.startActivity()},
|
||||
* this flag will prevent the system from applying an activity transition
|
||||
* animation to go to the next activity state. This doesn't mean an
|
||||
* animation will never run -- if another activity change happens that doesn't
|
||||
* specify this flag before the activity started here is displayed, then
|
||||
* that transition will be used. This this flag can be put to good use
|
||||
* when you are going to do a series of activity operations but the
|
||||
* animation seen by the user shouldn't be driven by the first activity
|
||||
* change but rather a later one.
|
||||
*/
|
||||
public static final int FLAG_ACTIVITY_NO_ANIMATION = 0X00010000;
|
||||
/**
|
||||
* If set, when sending a broadcast only registered receivers will be
|
||||
* called -- no BroadcastReceiver components will be launched.
|
||||
|
||||
@@ -32,6 +32,18 @@ public final class Formatter {
|
||||
* @return formated string with the number
|
||||
*/
|
||||
public static String formatFileSize(Context context, long number) {
|
||||
return formatFileSize(context, number, false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Like {@link #formatFileSize}, but trying to generate shorter numbers
|
||||
* (showing fewer digits of precisin).
|
||||
*/
|
||||
public static String formatShortFileSize(Context context, long number) {
|
||||
return formatFileSize(context, number, true);
|
||||
}
|
||||
|
||||
private static String formatFileSize(Context context, long number, boolean shorter) {
|
||||
if (context == null) {
|
||||
return "";
|
||||
}
|
||||
@@ -58,13 +70,24 @@ public final class Formatter {
|
||||
suffix = com.android.internal.R.string.petabyteShort;
|
||||
result = result / 1024;
|
||||
}
|
||||
if (result < 100) {
|
||||
String value = String.format("%.2f", result);
|
||||
return context.getResources().
|
||||
getString(com.android.internal.R.string.fileSizeSuffix,
|
||||
value, context.getString(suffix));
|
||||
String value;
|
||||
if (result < 1) {
|
||||
value = String.format("%.2f", result);
|
||||
} else if (result < 10) {
|
||||
if (shorter) {
|
||||
value = String.format("%.1f", result);
|
||||
} else {
|
||||
value = String.format("%.2f", result);
|
||||
}
|
||||
} else if (result < 100) {
|
||||
if (shorter) {
|
||||
value = String.format("%.0f", result);
|
||||
} else {
|
||||
value = String.format("%.2f", result);
|
||||
}
|
||||
} else {
|
||||
value = String.format("%.0f", result);
|
||||
}
|
||||
String value = String.format("%.0f", result);
|
||||
return context.getResources().
|
||||
getString(com.android.internal.R.string.fileSizeSuffix,
|
||||
value, context.getString(suffix));
|
||||
|
||||
@@ -314,7 +314,9 @@ public interface WindowManagerPolicy {
|
||||
public boolean showLw(boolean doAnimation);
|
||||
}
|
||||
|
||||
/** No transition happening. */
|
||||
/** Not set up for a transition. */
|
||||
public final int TRANSIT_UNSET = 0;
|
||||
/** No animation for transition. */
|
||||
public final int TRANSIT_NONE = 0;
|
||||
/** Window has been added to the screen. */
|
||||
public final int TRANSIT_ENTER = 1;
|
||||
|
||||
@@ -21,5 +21,5 @@
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
<translate android:fromXDelta="-100%" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -20,5 +20,5 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<translate android:fromXDelta="0%" android:toXDelta="33%"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -20,5 +20,5 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<translate android:fromXDelta="33%" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -21,5 +21,5 @@
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
<translate android:fromXDelta="0%" android:toXDelta="-100%"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/fade_in.xml
|
||||
**
|
||||
/*
|
||||
** Copyright 2007, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/fade_out.xml
|
||||
**
|
||||
/*
|
||||
** Copyright 2007, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
@@ -17,6 +16,7 @@
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/accelerate_interpolator">
|
||||
<scale android:fromXScale="1.0" android:toXScale="0.9"
|
||||
|
||||
@@ -19,10 +19,10 @@
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<scale android:fromXScale="2.0" android:toXScale="1.0"
|
||||
android:fromYScale="2.0" android:toYScale="1.0"
|
||||
<scale android:fromXScale="0.9" android:toXScale="1.0"
|
||||
android:fromYScale="0.9" android:toYScale="1.0"
|
||||
android:pivotX="50%" android:pivotY="50%"
|
||||
android:duration="@android:integer/config_mediumAnimTime" />
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
||||
|
||||
@@ -18,12 +18,11 @@
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
<scale android:fromXScale="1.0" android:toXScale="2.0"
|
||||
android:fromYScale="1.0" android:toYScale="2.0"
|
||||
android:interpolator="@anim/accelerate_interpolator">
|
||||
<scale android:fromXScale="1.0" android:toXScale="0.9"
|
||||
android:fromYScale="1.0" android:toYScale="0.9"
|
||||
android:pivotX="50%" android:pivotY="50%"
|
||||
android:duration="@android:integer/config_mediumAnimTime" />
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -18,8 +18,7 @@
|
||||
-->
|
||||
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<scale android:fromXScale="1.0" android:toXScale="2.0"
|
||||
android:fromYScale="1.0" android:toYScale="2.0"
|
||||
android:pivotX="50%p" android:pivotY="50%p"
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<translate android:fromXDelta="75%" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/accelerate_interpolator">
|
||||
<translate android:fromXDelta="0%" android:toXDelta="75%"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
</set>
|
||||
|
||||
@@ -17,8 +17,22 @@
|
||||
*/
|
||||
-->
|
||||
|
||||
<!-- This version zooms the new non-wallpaper down on top of the
|
||||
wallpaper. -->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<scale android:fromXScale="2.0" android:toXScale="1.0"
|
||||
android:fromYScale="2.0" android:toYScale="1.0"
|
||||
android:pivotX="50%p" android:pivotY="50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime" />
|
||||
</set>
|
||||
|
||||
<!-- This version is a variation on the inter-activity slide that
|
||||
also scales the wallpaper. -->
|
||||
<!--
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<translate android:fromXDelta="33%" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
</set>
|
||||
-->
|
||||
|
||||
@@ -17,6 +17,22 @@
|
||||
*/
|
||||
-->
|
||||
|
||||
<!-- This version zooms the new non-wallpaper down on top of the
|
||||
wallpaper. The wallpaper here just stays fixed behind. -->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
<scale android:fromXScale="1.0" android:toXScale=".5"
|
||||
android:fromYScale="1.0" android:toYScale=".5"
|
||||
android:pivotX="50%p" android:pivotY="50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime" />
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
</set>
|
||||
|
||||
<!-- This version is a variation on the inter-activity slide that
|
||||
also scales the wallpaper. -->
|
||||
<!--
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
@@ -27,3 +43,4 @@
|
||||
<translate android:fromXDelta="0%" android:toXDelta="-100%"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
</set>
|
||||
-->
|
||||
|
||||
@@ -17,6 +17,22 @@
|
||||
*/
|
||||
-->
|
||||
|
||||
<!-- This version zooms the new non-wallpaper up off the wallpaper the
|
||||
wallpaper. The wallpaper here just stays fixed behind. -->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
<scale android:fromXScale=".5" android:toXScale="1.0"
|
||||
android:fromYScale=".5" android:toYScale="1.0"
|
||||
android:pivotX="50%p" android:pivotY="50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime" />
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
</set>
|
||||
|
||||
<!-- This version is a variation on the inter-activity slide that
|
||||
also scales the wallpaper. -->
|
||||
<!--
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator"
|
||||
android:zAdjustment="top">
|
||||
@@ -27,3 +43,4 @@
|
||||
<translate android:fromXDelta="-100%" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
</set>
|
||||
-->
|
||||
|
||||
@@ -17,8 +17,22 @@
|
||||
*/
|
||||
-->
|
||||
|
||||
<!-- This version zooms the new non-wallpaper down on top of the
|
||||
wallpaper. -->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<scale android:fromXScale="1.0" android:toXScale="2.0"
|
||||
android:fromYScale="1.0" android:toYScale="2.0"
|
||||
android:pivotX="50%p" android:pivotY="50%p"
|
||||
android:duration="@android:integer/config_mediumAnimTime" />
|
||||
</set>
|
||||
|
||||
<!-- This version is a variation on the inter-activity slide that
|
||||
also scales the wallpaper. -->
|
||||
<!--
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@anim/decelerate_interpolator">
|
||||
<translate android:fromXDelta="0%" android:toXDelta="33%"
|
||||
android:duration="@android:integer/config_mediumAnimTime"/>
|
||||
</set>
|
||||
-->
|
||||
|
||||
@@ -27,13 +27,13 @@
|
||||
<bool name="config_sf_limitedAlpha">false</bool>
|
||||
|
||||
<!-- The duration (in milliseconds) of a short animation. -->
|
||||
<integer name="config_shortAnimTime">100</integer>
|
||||
<integer name="config_shortAnimTime">150</integer>
|
||||
|
||||
<!-- The duration (in milliseconds) of a medium-length animation. -->
|
||||
<integer name="config_mediumAnimTime">150</integer>
|
||||
<integer name="config_mediumAnimTime">250</integer>
|
||||
|
||||
<!-- The duration (in milliseconds) of a long animation. -->
|
||||
<integer name="config_longAnimTime">300</integer>
|
||||
<integer name="config_longAnimTime">400</integer>
|
||||
|
||||
<!-- XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
|
||||
Please don't copy them, copy anything else. -->
|
||||
|
||||
@@ -58,6 +58,19 @@
|
||||
<item name="activityOpenExitAnimation">@anim/activity_open_exit</item>
|
||||
<item name="activityCloseEnterAnimation">@anim/activity_close_enter</item>
|
||||
<item name="activityCloseExitAnimation">@anim/activity_close_exit</item>
|
||||
<item name="taskOpenEnterAnimation">@anim/activity_open_enter</item>
|
||||
<item name="taskOpenExitAnimation">@anim/activity_open_exit</item>
|
||||
<item name="taskCloseEnterAnimation">@anim/activity_close_enter</item>
|
||||
<item name="taskCloseExitAnimation">@anim/activity_close_exit</item>
|
||||
<item name="taskToFrontEnterAnimation">@anim/activity_open_enter</item>
|
||||
<item name="taskToFrontExitAnimation">@anim/activity_open_exit</item>
|
||||
<item name="taskToBackEnterAnimation">@anim/activity_close_enter</item>
|
||||
<item name="taskToBackExitAnimation">@anim/activity_close_exit</item>
|
||||
<!-- There is a good argument to be made that the user shouldn't
|
||||
be aware of task transitions, so we are going to use the same
|
||||
animation for them as we do for regular activity transitions. -->
|
||||
<!-- These provide an alternative animation for task transitions. -->
|
||||
<!--
|
||||
<item name="taskOpenEnterAnimation">@anim/task_open_enter</item>
|
||||
<item name="taskOpenExitAnimation">@anim/task_open_exit</item>
|
||||
<item name="taskCloseEnterAnimation">@anim/task_close_enter</item>
|
||||
@@ -66,6 +79,7 @@
|
||||
<item name="taskToFrontExitAnimation">@anim/task_open_exit</item>
|
||||
<item name="taskToBackEnterAnimation">@anim/task_close_enter</item>
|
||||
<item name="taskToBackExitAnimation">@anim/task_close_exit</item>
|
||||
-->
|
||||
<item name="wallpaperOpenEnterAnimation">@anim/wallpaper_open_enter</item>
|
||||
<item name="wallpaperOpenExitAnimation">@anim/wallpaper_open_exit</item>
|
||||
<item name="wallpaperCloseEnterAnimation">@anim/wallpaper_close_enter</item>
|
||||
|
||||
@@ -354,7 +354,7 @@
|
||||
<style name="Theme.NoDisplay">
|
||||
<item name="android:windowBackground">@null</item>
|
||||
<item name="android:windowContentOverlay">@null</item>
|
||||
<item name="android:windowIsTranslucent">false</item>
|
||||
<item name="android:windowIsTranslucent">true</item>
|
||||
<item name="android:windowAnimationStyle">@null</item>
|
||||
<item name="android:windowDisablePreview">true</item>
|
||||
<item name="android:windowNoDisplay">true</item>
|
||||
|
||||
Reference in New Issue
Block a user