Home | History | Annotate | Download | only in phototable

Lines Matching defs:mPanel

49     private final View[] mPanel;
108 mPanel = new View[2];
176 return (ImageView) ((mPanel[0].getAlpha() < 0.5f) ? mPanel[0] : mPanel[1]);
228 mPanel[0].animate().cancel();
229 mPanel[1].animate().cancel();
231 float frontY = mPanel[0].getRotationY();
232 float backY = mPanel[1].getRotationY();
233 float frontA = mPanel[0].getAlpha();
234 float backA = mPanel[1].getAlpha();
239 mPanel[0].setRotationY(frontY);
240 mPanel[1].setRotationY(backY);
250 ViewPropertyAnimator frontAnim = mPanel[0].animate()
254 ViewPropertyAnimator backAnim = mPanel[1].animate()
271 mPanel[0]= findViewById(R.id.front);
272 mPanel[1] = findViewById(R.id.back);
288 setScaleType(mPanel[0]);
289 setScaleType(mPanel[1]);