Home | History | Annotate | Download | only in phototable

Lines Matching refs:mPanel

50     private final View[] mPanel;
108 mPanel = new View[2];
175 return (ImageView) ((mPanel[0].getAlpha() < 0.5f) ? mPanel[0] : mPanel[1]);
231 mPanel[0].animate().cancel();
232 mPanel[1].animate().cancel();
234 float frontY = mPanel[0].getRotationY();
235 float backY = mPanel[1].getRotationY();
236 float frontA = mPanel[0].getAlpha();
237 float backA = mPanel[1].getAlpha();
242 mPanel[0].setRotationY(frontY);
243 mPanel[1].setRotationY(backY);
253 ViewPropertyAnimator frontAnim = mPanel[0].animate()
257 ViewPropertyAnimator backAnim = mPanel[1].animate()
274 mPanel[0]= findViewById(R.id.front);
275 mPanel[1] = findViewById(R.id.back);
292 setScaleType(mPanel[0]);
293 setScaleType(mPanel[1]);