OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:view
(Results
1 - 25
of
7837
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/support/v4/kitkat/android/support/v4/view/
ViewCompatKitKat.java
17
package android.support.v4.
view
;
19
import android.
view
.
View
;
22
* KitKat-specific
View
API implementation.
25
public static int getAccessibilityLiveRegion(
View
view
) {
26
return
view
.getAccessibilityLiveRegion();
29
public static void setAccessibilityLiveRegion(
View
view
, int mode) {
30
view
.setAccessibilityLiveRegion(mode)
[
all
...]
/frameworks/support/v4/honeycomb/android/support/v4/view/
ViewCompatHC.java
17
package android.support.v4.
view
;
21
import android.
view
.
View
;
28
public static float getAlpha(
View
view
) {
29
return
view
.getAlpha();
32
public static void setLayerType(
View
view
, int layerType, Paint paint) {
33
view
.setLayerType(layerType, paint);
36
public static int getLayerType(
View
view)
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/view/
View.java
17
package mock_android.
view
;
19
public class
View
{
/frameworks/support/v4/jellybean/android/support/v4/view/
ViewCompatJB.java
17
package android.support.v4.
view
;
20
import android.
view
.
View
;
21
import android.
view
.ViewParent;
24
* Jellybean-specific
View
API access
28
public static boolean hasTransientState(
View
view
) {
29
return
view
.hasTransientState();
32
public static void setHasTransientState(
View
view
, boolean hasTransientState)
[
all
...]
/frameworks/base/core/java/android/view/
AnimationRenderStats.aidl
17
package android.
view
;
DisplayInfo.aidl
17
package android.
view
;
DragEvent.aidl
17
package android.
view
;
GraphicBuffer.aidl
17
package android.
view
;
InputChannel.aidl
1
/* //device/java/android/android/
view
/InputChannel.aidl
18
package android.
view
;
InputDevice.aidl
1
/* //device/java/android/android.
view
.InputDevice.aidl
18
package android.
view
;
InputEvent.aidl
1
/* //device/java/android/android.
view
.InputEvent.aidl
18
package android.
view
;
KeyEvent.aidl
1
/* //device/java/android/android.
view
.KeyEvent.aidl
18
package android.
view
;
MagnificationSpec.aidl
18
package android.
view
;
MotionEvent.aidl
1
/* //device/java/android/android.
view
.KeyEvent.aidl
18
package android.
view
;
PointerIcon.aidl
17
package android.
view
;
Surface.aidl
1
/* //device/java/android/android/
view
/Surface.aidl
18
package android.
view
;
WindowAnimationFrameStats.aidl
17
package android.
view
;
WindowContentFrameStats.aidl
17
package android.
view
;
WindowInfo.aidl
17
package android.
view
;
/frameworks/support/v4/ics/android/support/v4/view/
ViewPropertyAnimatorListener.java
1
package android.support.v4.
view
;/*
17
import android.
view
.
View
;
28
* @param
view
The
view
associated with the ViewPropertyAnimator
30
void onAnimationStart(
View
view
);
36
* @param
view
The
view
associated with the ViewPropertyAnimator
38
void onAnimationEnd(
View
view)
[
all
...]
ViewPropertyAnimatorUpdateListener.java
17
package android.support.v4.
view
;
19
import android.
view
.
View
;
32
* @param
view
The
view
associated with the ViewPropertyAnimatorCompat
34
void onAnimationUpdate(
View
view
);
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
ViewCompatJellybeanMr1.java
17
package android.support.v4.
view
;
20
import android.
view
.
View
;
23
* Jellybean MR1 - specific
View
API access.
27
public static int getLabelFor(
View
view
) {
28
return
view
.getLabelFor();
31
public static void setLabelFor(
View
view
, int id) {
32
view
.setLabelFor(id)
[
all
...]
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
ViewPropertyAnimatorCompatJellybeanMr2.java
16
package android.support.v4.
view
;
18
import android.
view
.
View
;
19
import android.
view
.animation.Interpolator;
22
public static Interpolator getInterpolator(
View
view
) {
23
return (Interpolator)
view
.animate().getInterpolator();
/frameworks/support/v4/java/android/support/v4/view/
WindowCompat.java
17
package android.support.v4.
view
;
19
import android.
view
.
View
;
20
import android.
view
.Window;
44
* <p>This mode is especially useful with {@link
View
#SYSTEM_UI_FLAG_FULLSCREEN
45
*
View
.SYSTEM_UI_FLAG_FULLSCREEN}, which allows you to seamlessly hide the
50
* {@link
View
#fitSystemWindows(android.graphics.Rect)
View
.fitSystemWindows(Rect)}
/cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
ViewPressedModifier.java
19
import android.
view
.
View
;
24
public
View
modifyView(
View
view
) {
25
view
.setPressed(true);
26
return
view
;
Completed in 951 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>