OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:duration
(Results
151 - 175
of
1213
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/cts/tests/res/anim/
decelerate_alpha.xml
21
android:
duration
="2000" />
layout_anim_controller_animation.xml
23
android:
duration
="1000" />
move_ani.xml
20
android:
duration
="2000"
/cts/tests/res/xml/
anim_list_missing_item_drawable.xml
21
<item android:
duration
="2000" />
anim_list_missing_list_attrs.xml
22
android:
duration
="2000" />
/cts/tests/tests/view/src/android/view/animation/cts/
AnimationUtilsTest.java
75
// android:
duration
="500" />
76
int
duration
= 500;
local
78
assertEquals(
duration
, animation.getDuration());
95
assertEquals(
duration
, controller.getAnimation().getDuration());
LayoutAnimationControllerTest.java
55
/**
Duration
defined in layout_anim_controller_animation.xml is 1000 */
56
private static final int
DURATION
= 1000;
63
/** Default max
duration
of these three children */
197
long maxDuration = (long) (delay * INDEX_OF_CHILD3 *
DURATION
+
DURATION
);
209
// child animation delay = child index * delay * animation
duration
282
//
duration
defined in decelerate_alpha.xml is 2000
283
long
duration
= 2000;
286
long maxDuration = (long) (DEFAULT_DELAY * INDEX_OF_CHILD3 *
duration
+
duration
);
[
all
...]
/development/samples/ApiDemos/res/anim/
fade.xml
20
android:
duration
="@android:integer/config_longAnimTime" />
hold.xml
20
android:
duration
="@android:integer/config_longAnimTime" />
hyperspace_in.xml
17
<alpha xmlns:android="http://schemas.android.com/apk/res/android" android:fromAlpha="0.0" android:toAlpha="1.0" android:
duration
="300" android:startOffset="1200" />
shake.xml
17
<translate xmlns:android="http://schemas.android.com/apk/res/android" android:fromXDelta="0" android:toXDelta="10" android:
duration
="1000" android:interpolator="@anim/cycle_7" />
slide_left.xml
19
android:
duration
="@android:integer/config_shortAnimTime" />
slide_right.xml
19
android:
duration
="@android:integer/config_shortAnimTime" />
/development/samples/Home/res/anim/
fade_in.xml
19
android:fromAlpha="0.0" android:toAlpha="1.0" android:
duration
="50" />
fade_out.xml
19
android:fromAlpha="1.0" android:toAlpha="0.0" android:
duration
="50" />
grid_exit.xml
19
android:fromAlpha="1.0" android:toAlpha="0.0" android:
duration
="200" />
/development/samples/Wiktionary/res/anim/
slide_in.xml
21
android:
duration
="400" />
slide_out.xml
21
android:
duration
="400" />
/frameworks/base/core/res/res/anim/
activity_close_enter.xml
24
android:
duration
="@android:integer/config_shortAnimTime"/>
activity_close_exit.xml
23
android:
duration
="@android:integer/config_shortAnimTime"/>
activity_open_enter.xml
23
android:
duration
="@android:integer/config_shortAnimTime"/>
fade_in.xml
24
android:
duration
="@android:integer/config_longAnimTime" />
fade_out.xml
24
android:
duration
="@android:integer/config_mediumAnimTime"
input_method_extract_enter.xml
24
android:
duration
="@android:integer/config_shortAnimTime" />
input_method_extract_exit.xml
24
android:
duration
="@android:integer/config_shortAnimTime"
Completed in 58 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>