Home
last modified time | relevance | path

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

/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/TV/src/com/android/tv/ui/sidepanel/
DSideFragmentManager.java42 private final View mPanel; field in SideFragmentManager
62 mPanel = mActivity.findViewById(R.id.side_panel); in SideFragmentManager()
64 mShowAnimator.setTarget(mPanel); in SideFragmentManager()
66 mHideAnimator.setTarget(mPanel); in SideFragmentManager()
126 mPanel.setVisibility(View.VISIBLE); in show()
164 mPanel.setVisibility(View.GONE); in hideAllInternal()
186 mPanel.setVisibility(View.VISIBLE); in showSidePanel()
202 hideAnimator.setTarget(mPanel); in hideSidePanel()
207 mPanel.setVisibility(View.GONE); in hideSidePanel()
211 mPanel.setVisibility(View.GONE); in hideSidePanel()
[all …]
/packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/
DHvacPanelController.java70 private View mPanel; field in HvacPanelController
157 mPanel = mContainer.findViewById(R.id.hvac_center_panel); in HvacPanelController()
159 mHvacFanControlBackground = mPanel.findViewById(R.id.fan_control_bg); in HvacPanelController()
160 mPanel.setOnClickListener(mPanelClickListener); in HvacPanelController()
521 int currentHeight = mPanel.getLayoutParams().height;
522 mPanel.getLayoutParams().height = height;
523 mPanel.setTop(mPanel.getTop() + height - currentHeight);
524 mPanel.requestLayout();
/packages/apps/Car/Hvac/src/com/android/car/hvac/
DHvacUiService.java46 private View mPanel; field in HvacUiService
126 mPanel = mContainer.findViewById(R.id.hvac_center_panel); in onCreate()
127 mPanel.getLayoutParams().height = mPanelCollapsedHeight; in onCreate()
143 mWindowManager.removeView(mPanel); in onDestroy()
/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()