Searched defs:elevation (Results 26 - 31 of 31) sorted by relevance

12

/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DWindowDecorActionBar.java228 final int elevation = a.getDimensionPixelSize(R.styleable.ActionBar_elevation, 0);
229 if (elevation != 0) {
230 setElevation(elevation);
247 public void setElevation(float elevation) { argument
248 ViewCompat.setElevation(mContainerView, elevation);
/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java725 public void setElevation(View view, float elevation) { argument
1254 public void setElevation(View view, float elevation) { argument
1255 view.setElevation(elevation);
2953 * Sets the base elevation of this view, in pixels.
2955 public static void setElevation(View view, float elevation) { argument
2956 IMPL.setElevation(view, elevation);
2960 * The base elevation of this view relative to its parent, in pixels.
2969 * Sets the depth location of this view relative to its {@link #getElevation(View) elevation}.
2976 * The depth location of this view relative to its {@link #getElevation(View) elevation}.
2978 * @return The depth of this view relative to its elevation
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1118 * Returns the visual elevation of the view, used for shadowing and other visual
1482 public void setElevation(float elevation) { argument
1483 mNode.mElevation = elevation;
1981 float elevation = node.getElevation();
1982 if (elevation != 0) {
1983 Log.i(TAG, prefix + " Elevation: " + elevation);
1987 Log.i(TAG, prefix + " Alpha: " + elevation);
/frameworks/base/core/java/android/view/
H A DWindow.java1476 * Sets the window elevation.
1482 * @param elevation The window elevation.
1486 public void setElevation(float elevation) {} argument
1489 * Gets the window elevation.
H A DView.java4739 float elevation = 0;
4839 elevation = a.getDimension(attr, 0);
5331 setElevation(elevation);
14658 * {@link #getElevation() elevation} property.
14670 * the x value passed in and the current {@link #getElevation() elevation} property.
14679 * The base elevation of this view relative to its parent, in pixels.
14689 * Sets the base elevation of this view, in pixels.
14693 public void setElevation(float elevation) { argument
14694 if (elevation != getElevation()) {
14696 mRenderNode.setElevation(elevation);
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java1363 final float elevation = a.getDimension(R.styleable.Window_windowElevation, 0);
1364 if (elevation != 0) {
1365 st.decorView.setElevation(elevation);
1448 public final void setElevation(float elevation) { argument
1449 mElevation = elevation;
1452 mDecor.setElevation(elevation);

Completed in 206 milliseconds

12