OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ViewState
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ViewState.java
26
public class
ViewState
{
34
public void copyFrom(
ViewState
viewState
) {
35
alpha =
viewState
.alpha;
36
yTranslation =
viewState
.yTranslation;
37
zTranslation =
viewState
.zTranslation;
38
gone =
viewState
.gone;
39
hidden =
viewState
.hidden;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java
291
public static class
ViewState
{
292
private static final IntProperty<
ViewState
> HINT_ALPHA =
293
new IntProperty<
ViewState
>("drawableAlpha") {
295
public void setValue(
ViewState
object, int alpha) {
301
public Integer get(
ViewState
object) {
319
private
ViewState
(int areaAlpha, int hintAlpha, @TextOrientation int hintOrientation,
428
public final
ViewState
viewState
;
447
this.
viewState
= new
ViewState
(dockAreaAlpha, hintTextAlpha, hintTextOrientation
[
all
...]
Completed in 4505 milliseconds