OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:crossfade
(Results
1 - 25
of
55
) sorted by null
1
2
3
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
CrossFadeDemo.java
23
import android.transition.
Crossfade
;
39
setContentView(R.layout.
crossfade
);
44
mScene1 = Scene.getSceneForLayout(mSceneRoot, R.layout.
crossfade
, this);
47
Crossfade
crossfade
= new
Crossfade
();
local
48
crossfade
.setFadeBehavior(
Crossfade
.FADE_BEHAVIOR_CROSSFADE);
49
crossfade
.setResizeBehavior(
Crossfade
.RESIZE_BEHAVIOR_NONE)
[
all
...]
CrossfadeMultiple.java
23
import android.transition.
Crossfade
;
42
Crossfade
mCrossfade;
59
mCrossfade = new
Crossfade
();
68
Crossfade
inOut = new
Crossfade
();
70
inOut.setFadeBehavior(
Crossfade
.FADE_BEHAVIOR_OUT_IN);
125
mCrossfade.setFadeBehavior(
Crossfade
.FADE_BEHAVIOR_REVEAL);
128
case R.id.
crossfade
:
129
mCrossfade.setFadeBehavior(
Crossfade
.FADE_BEHAVIOR_CROSSFADE);
CrossfadeImage.java
22
import android.transition.
Crossfade
;
50
Crossfade
mCrossfade = new
Crossfade
();
ContactsExpansion.java
31
import android.transition.
Crossfade
;
82
addTransition(new
Crossfade
().addTarget(R.id.contact_picture));
SurfaceAndTextureViews.java
30
import android.transition.
Crossfade
;
70
transition.addTransition(new ChangeBounds()).addTransition(new
Crossfade
().addTarget(0).
/external/chromium_org/ash/wm/caption_buttons/
alternate_frame_size_button_delegate.h
31
// |animate| is ANIMATE_YES, the buttons will
crossfade
back to their
35
// Sets the minimize and close button icons. The buttons will
crossfade
to
frame_caption_button.h
84
// The image to
crossfade
from.
frame_caption_button.cc
16
// The duration of the
crossfade
animation when swapping the button's icon.
/frameworks/base/docs/html/training/animation/
crossfade.jd
20
<a href="#animate">
Crossfade
the Views</a>
37
Crossfade
animations (also know as dissolve) gradually fade out one UI component while simultaneously fading in
42
<p>Here's an example of a
crossfade
from a progress indicator to some text content.
53
Crossfade
animation
60
and run the sample app and select the
Crossfade
example.
78
Create the two views that you want to
crossfade
. The following example creates a progress
115
<li>Create member variables for the views that you want to
crossfade
. You need
160
Crossfade
the Views
163
Now that the views are properly set up,
crossfade
them by doing the following:
191
private void
crossfade
() {
[
all
...]
index.jd
57
<b><a href="
crossfade
.html">Crossfading Two Views</a></b>
60
Learn how to
crossfade
between two overlapping views. This lesson shows you how to
crossfade
a progress
layout.jd
53
run the sample app and select the
Crossfade
example. See the following files for the
/frameworks/base/core/java/android/transition/
Crossfade.java
47
public class
Crossfade
extends Transition {
51
private static final String LOG_TAG = "
Crossfade
";
53
private static final String PROPNAME_BITMAP = "android:
crossfade
:bitmap";
54
private static final String PROPNAME_DRAWABLE = "android:
crossfade
:drawable";
55
private static final String PROPNAME_BOUNDS = "android:
crossfade
:bounds";
124
public
Crossfade
setFadeBehavior(int fadeBehavior) {
134
* @return This
crossfade
object.
149
public
Crossfade
setResizeBehavior(int resizeBehavior) {
159
* @return This
crossfade
object.
219
Log.d(LOG_TAG, "
Crossfade
: created anim " + anim + " for start, end values "
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFPanner.h
65
// Whenever the azimuth or elevation changes, a
crossfade
is initiated to transition
87
// A
crossfade
value 0 <= m_crossfadeX <= 1.
90
// Per-sample-frame
crossfade
value increment.
HRTFPanner.cpp
231
//
Crossfade
inter-aural delays based on transitions.
282
// We've fully made the
crossfade
transition from 1 -> 2.
287
// We've fully made the
crossfade
transition from 2 -> 1.
/frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java
188
final boolean
crossFade
= mCrossFade;
194
if (!
crossFade
|| alpha == 0) {
205
if (
crossFade
) {
209
if (
crossFade
) {
/frameworks/base/media/java/android/media/videoeditor/
TransitionCrossfade.java
22
* This class allows to render a
crossfade
(dissolve) effect transition between
/packages/apps/Launcher2/src/com/android/launcher2/
DragView.java
184
boolean
crossFade
= mCrossFadeProgress > 0 && mCrossFadeBitmap != null;
185
if (
crossFade
) {
186
int alpha =
crossFade
? (int) (255 * (1 - mCrossFadeProgress)) : 255;
190
if (
crossFade
) {
205
public void
crossFade
(int duration) {
/packages/apps/Launcher3/src/com/android/launcher3/
DragView.java
193
boolean
crossFade
= mCrossFadeProgress > 0 && mCrossFadeBitmap != null;
194
if (
crossFade
) {
195
int alpha =
crossFade
? (int) (255 * (1 - mCrossFadeProgress)) : 255;
199
if (
crossFade
) {
214
public void
crossFade
(int duration) {
/frameworks/base/tests/TransitionTests/res/layout/
crossfade_multiple.xml
19
android:id="@+id/
crossfade
"
20
android:text="@string/
crossfade
"/>
/frameworks/base/tests/TransitionTests/res/values/
strings.xml
56
<string name="
crossfade
">
Crossfade
</string>
/development/samples/ApiDemos/res/layout/
rotation_animation.xml
63
android:id="@+id/
crossfade
"
/development/samples/ApiDemos/src/com/example/android/apis/app/
RotationAnimation.java
61
case R.id.
crossfade
:
/development/samples/training/AnimationsDemo/res/values/
strings.xml
21
<string name="title_crossfade">Simple
Crossfade
</string>
/frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java
61
static final boolean
CROSSFADE
= false;
353
// Capture the old view into a bitmap so we can do the
crossfade
.
354
if (
CROSSFADE
) {
433
if (
CROSSFADE
) {
486
if (
CROSSFADE
) {
/external/chromium_org/ash/display/
root_window_transformers.cc
58
// TODO(oshima): Add animation. (
crossfade
+rotation, or just cross-fade)
Completed in 139 milliseconds
1
2
3