Home
last modified time | relevance | path

Searched refs:mPanel (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TV/src/com/android/tv/ui/sidepanel/
DSideFragmentManager.java41 private final View mPanel; field in SideFragmentManager
60 mPanel = mActivity.findViewById(R.id.side_panel); in SideFragmentManager()
62 mShowAnimator.setTarget(mPanel); in SideFragmentManager()
64 mHideAnimator.setTarget(mPanel); in SideFragmentManager()
124 mPanel.setVisibility(View.VISIBLE); in show()
161 mPanel.setVisibility(View.GONE); in hideAllInternal()
183 mPanel.setVisibility(View.VISIBLE); in showSidePanel()
196 mPanel.removeCallbacks(mHideAllRunnable); in hideSidePanel()
199 hideAnimator.setTarget(mPanel); in hideSidePanel()
204 mPanel.setVisibility(View.GONE); in hideSidePanel()
[all …]
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DPhotoCarousel.java49 private final View[] mPanel; field in PhotoCarousel
108 mPanel = new View[2]; in PhotoCarousel()
176 return (ImageView) ((mPanel[0].getAlpha() < 0.5f) ? mPanel[0] : mPanel[1]); in getBackface()
228 mPanel[0].animate().cancel(); in flip()
229 mPanel[1].animate().cancel(); in flip()
231 float frontY = mPanel[0].getRotationY(); in flip()
232 float backY = mPanel[1].getRotationY(); in flip()
233 float frontA = mPanel[0].getAlpha(); in flip()
234 float backA = mPanel[1].getAlpha(); in flip()
239 mPanel[0].setRotationY(frontY); in flip()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DUndoBarView.java37 private final NinePatchTexture mPanel; field in UndoBarView
74 mPanel = new NinePatchTexture(context, R.drawable.panel_undo_holo); in UndoBarView()
105 mPanel.draw(canvas, mBarMargin, 0, w - mBarMargin * 2, mBarHeight); in render()