OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bouncer
(Results
1 - 25
of
37
) sorted by null
1
2
/frameworks/base/docs/downloads/devbytes/
Bouncer.zip
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
ChallengeLayout.java
37
* If you want to show the challenge layout in
bouncer
mode where applicable,
45
* Show the
bouncer
challenge. This may block access to other child views.
50
* Hide the
bouncer
challenge if it is currently showing.
56
* Returns true if the challenge is currently in
bouncer
mode,
67
* Set a listener that will respond to changes in
bouncer
state.
74
* Listener interface that reports changes in
bouncer
state.
75
* The
bouncer
is
79
* Called when the
bouncer
state changes.
80
* The
bouncer
is activated when the user must pass a security challenge
84
* as the
bouncer
will prevent interaction with other elements of the UI
[
all
...]
KeyguardSecurityView.java
75
* Place the security view into
bouncer
mode.
82
* Place the security view into non-
bouncer
mode.
KeyguardUpdateMonitorCallback.java
86
* Called when the keyguard enters or leaves
bouncer
mode.
87
* @param
bouncer
if true, keyguard is now in
bouncer
mode.
89
public void onKeyguardBouncerChanged(boolean
bouncer
) { }
KeyguardFaceUnlockView.java
220
// Don't start it if the
bouncer
is not showing, but keep this view up because we want
221
// it here and ready for when the
bouncer
does show.
245
// Returns true if the device is currently in a state where the user is seeing the
bouncer
.
254
// Starts the biometric unlock if the
bouncer
was not previously visible to the user, but is now
255
// visibile to the user. Stops the biometric unlock if the
bouncer
was previously visible to
310
public void onKeyguardBouncerChanged(boolean
bouncer
) {
311
if (DEBUG) Log.d(TAG, "onKeyguardBouncerChanged(" +
bouncer
+ ")");
/development/samples/devbytes/animation/Bouncer/res/values/
strings.xml
17
<string name="app_name">
Bouncer
</string>
18
<string name="title_activity_bouncer">
Bouncer
</string>
/development/samples/devbytes/animation/Bouncer/res/layout/
activity_bouncer.xml
23
class="com.example.android.
bouncer
.
Bouncer
$MyView"
26
tools:context=".
Bouncer
" />
activity_bouncer1.xml
23
class="com.example.android.
bouncer
.Bouncer1$MyView"
26
tools:context=".
Bouncer
" />
activity_bouncer2.xml
23
class="com.example.android.
bouncer
.Bouncer2$MyView"
26
tools:context=".
Bouncer
" />
activity_bouncer3.xml
23
class="com.example.android.
bouncer
.Bouncer3$MyView"
26
tools:context=".
Bouncer
" />
/development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java
124
AnimatorSet
bouncer
= new AnimatorSet();
local
125
bouncer
.play(bounceAnim).before(squashAnim1);
126
bouncer
.play(squashAnim1).with(squashAnim2);
127
bouncer
.play(squashAnim1).with(stretchAnim1);
128
bouncer
.play(squashAnim1).with(stretchAnim2);
129
bouncer
.play(bounceBackAnim).after(stretchAnim2);
144
animatorSet.play(
bouncer
).before(fadeAnim);
/development/samples/devbytes/animation/Bouncer/
AndroidManifest.xml
16
package="com.example.android.
bouncer
"
29
android:name=".
Bouncer
"
56
android:name="com.example.android.
bouncer
.Bouncer3"
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarState.java
36
* dismissing the shade will still show the
bouncer
.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BounceInterpolator.java
22
* An implementation of a
bouncer
interpolator optimized for unlock hinting.
StatusBarKeyguardViewManager.java
48
// Delay for showing the navigation bar when the
bouncer
appears. This should be kept in sync
105
* Shows the notification keyguard or the
bouncer
depending on
220
* security view of the
bouncer
.
343
//
bouncer
is appearing.
KeyguardBouncer.java
37
* A class which manages the
bouncer
on the lockscreen.
73
// Keyguard. If we need to authenticate, show the
bouncer
.
UnlockMethodCache.java
68
* @return whether the lockscreen is currently insecure, i. e. the
bouncer
won't be shown
/development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/
Bouncer.java
17
package com.example.android.
bouncer
;
41
public class
Bouncer
extends Activity {
Bouncer1.java
17
package com.example.android.
bouncer
;
32
* See the comments in
Bouncer
for the overall functionality of this app. Changes for this
Bouncer2.java
17
package com.example.android.
bouncer
;
33
* See the comments in
Bouncer
for the overall functionality of this app. Changes for this
Bouncer3.java
17
package com.example.android.
bouncer
;
33
* See the comments in
Bouncer
for the overall functionality of this app. Changes for this
/cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java
221
AnimatorSet
bouncer
= new AnimatorSet();
local
222
bouncer
.play(bounceYAnimator);
235
animatorSet.play(
bouncer
).before(fadeAnim);
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeLog.java
126
log("
bouncer
" + showing);
236
public void onKeyguardBouncerChanged(boolean
bouncer
) {
237
traceKeyguardBouncerChanged(
bouncer
);
/frameworks/base/packages/Keyguard/res/layout/
keyguard_simple_host_view.xml
31
from this view when
bouncer
is shown -->
/frameworks/base/packages/SystemUI/src/com/android/systemui/
EventLogTags.logtags
16
## bouncerShowing: 1:
Bouncer
currently shown to the user
Completed in 1799 milliseconds
1
2