Java Code Examples for android.view.View#setPivotX()
The following examples show how to use
android.view.View#setPivotX() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RotateDownTransformer.java From OmegaRecyclerView with MIT License | 6 votes |
@Override public void transformItem(View view, float position, boolean isHorizontal, int scrolled) { float rotation; float width = view.getWidth(); float height = view.getHeight(); if (isHorizontal) { rotation = ROT_MOD * position * -1.25f; view.setPivotX(width * 0.5f); view.setPivotY(height); view.setTranslationX(0f); } else { rotation = ROT_MOD * position; view.setPivotY(height * 0.5f); view.setPivotX(view.getWidth()); view.setTranslationY(0f); } view.setRotation(rotation); }
Example 2
Source File: BaseTransformer.java From BannerPager with Apache License 2.0 | 6 votes |
/** * Called each {@link #transformPage(View, float)} before {{@link #onTransform(View, float)}. * <p> * The default implementation attempts to reset all view properties. This is useful when toggling transforms that do * not modify the same page properties. For instance changing from a transformation that applies rotation to a * transformation that fades can inadvertently leave a fragment stuck with a rotation or with some degree of applied * alpha. * * @param page Apply the transformation to this page * @param position Position of page relative to the current front-and-center position of the pager. 0 is front and * center. 1 is one full page position to the right, and -1 is one page position to the left. */ protected void onPreTransform(View page, float position) { final float width = page.getWidth(); page.setRotationX(0); page.setRotationY(0); page.setRotation(0); page.setScaleX(1); page.setScaleY(1); page.setPivotX(0); page.setPivotY(0); page.setTranslationY(0); page.setTranslationX(isPagingEnabled() ? 0f : -width * position); if (hideOffscreenPages()) { page.setAlpha(position <= -1f || position >= 1f ? 0f : 1f); // page.setEnabled(false); } else { // page.setEnabled(true); page.setAlpha(1f); } }
Example 3
Source File: PagedView.java From TurboLauncher with Apache License 2.0 | 6 votes |
@Override public void screenScrolled(View v, int i, float scrollProgress) { float rotation = (mUp ? TRANSITION_SCREEN_ROTATION : -TRANSITION_SCREEN_ROTATION) * scrollProgress; float translationX = v.getMeasuredWidth() * scrollProgress; float rotatePoint = (v.getMeasuredWidth() * 0.5f) / (float) Math.tan(Math.toRadians((double) (TRANSITION_SCREEN_ROTATION * 0.5f))); v.setPivotX(v.getMeasuredWidth() * 0.5f); if (mUp) { v.setPivotY(-rotatePoint); } else { v.setPivotY(v.getMeasuredHeight() + rotatePoint); } v.setRotation(rotation); v.setTranslationX(translationX); }
Example 4
Source File: FragmentTransactionExtended.java From Kernel-Tuner with GNU General Public License v3.0 | 6 votes |
public void slideBack(Animator.AnimatorListener listener) { View movingFragmentView = mFirstFragment.getView(); movingFragmentView.setPivotY(movingFragmentView.getHeight()/2); movingFragmentView.setPivotX(movingFragmentView.getWidth() / 2); PropertyValuesHolder rotateX = PropertyValuesHolder.ofFloat("rotationX", 40f); PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.8f); PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.8f); PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0.5f); ObjectAnimator movingFragmentAnimator = ObjectAnimator.ofPropertyValuesHolder(movingFragmentView, rotateX, scaleX, scaleY, alpha); ObjectAnimator movingFragmentRotator = ObjectAnimator.ofFloat(movingFragmentView, "rotationX", 0); movingFragmentRotator.setStartDelay(mContext.getResources().getInteger(R.integer.half_slide_up_down_duration)); AnimatorSet s = new AnimatorSet(); s.playTogether(movingFragmentAnimator, movingFragmentRotator); s.addListener(listener); s.start(); }
Example 5
Source File: ABaseTransformer.java From UltimateAndroid with Apache License 2.0 | 6 votes |
/** * Called each {@link #transformPage(android.view.View, float)} before {{@link #onTransform(android.view.View, float)} is called. * * @param view * @param position */ protected void onPreTransform(View view, float position) { final float width = view.getWidth(); view.setRotationX(0); view.setRotationY(0); view.setRotation(0); view.setScaleX(1); view.setScaleY(1); view.setPivotX(0); view.setPivotY(0); view.setTranslationY(0); view.setTranslationX(isPagingEnabled() ? 0f : -width * position); if (hideOffscreenPages()) { view.setAlpha(position <= -1f || position >= 1f ? 0f : 1f); } else { view.setAlpha(1f); } }
Example 6
Source File: VerticalRotateTransformer.java From CoolViewPager with Apache License 2.0 | 6 votes |
@Override public void transformPage(View page, float position) { page.setTranslationX(page.getWidth() * -position); page.setTranslationY(page.getHeight() * position); page.setCameraDistance(10000F); if(position < -1){ page.setRotationX(0F); }else if(position <= 0){ page.setPivotX(page.getWidth()/2); page.setPivotY(page.getHeight()); page.setRotationX(MAX_ROTATE * -position); }else if(position <= 1){ page.setPivotX(page.getWidth()/2); page.setPivotY(0F); page.setRotationX(MAX_ROTATE * -position); }else { page.setRotationX(0F); } }
Example 7
Source File: FlipVerticalTransformer.java From PageTransformerHelp with Apache License 2.0 | 5 votes |
@Override protected void onTransform(View view, float position) { final float rotation = -180f * position; view.setAlpha(rotation > 90f || rotation < -90f ? 0f : 1f); view.setPivotX(view.getWidth() * 0.5f); view.setPivotY(view.getHeight() * 0.5f); view.setRotationX(rotation); }
Example 8
Source File: RegisterActivity.java From Expert-Android-Programming with MIT License | 5 votes |
private void showHint(View view) { view.setPivotX(0); view.setPivotY(view.getHeight()); if (view.getVisibility() == View.INVISIBLE) { view.setVisibility(View.VISIBLE); Animator iconAnim = ObjectAnimator.ofPropertyValuesHolder(view, PropertyValuesHolder.ofFloat(View.ALPHA, 0f, 1f), PropertyValuesHolder.ofFloat(View.SCALE_Y, 0f, 1f)); iconAnim.start(); } }
Example 9
Source File: CubeInTransformer.java From Banner with Apache License 2.0 | 5 votes |
@Override protected void onTransform(View view, float position) { // Rotate the fragment on the left or right edge view.setPivotX(position > 0 ? 0 : view.getWidth()); view.setPivotY(0); view.setRotationY(-90f * position); }
Example 10
Source File: RotateDownPageTransformer.java From Hillffair17 with GNU General Public License v3.0 | 5 votes |
private void onTransform(View view, float position) { final float width = view.getWidth(); final float height = view.getHeight(); final float rotation = ROT_MOD * position * -1.25f; view.setPivotX(width * 0.5f); view.setPivotY(height); view.setRotation(rotation); }
Example 11
Source File: CoverFlowViewTransformer.java From carouselview with MIT License | 5 votes |
@Override public void transform(View view, float position) { int width = view.getMeasuredWidth(), height = view.getMeasuredHeight(); view.setPivotX(width / 2.0f); view.setPivotY(height / 2.0f); view.setTranslationX(width * position * mOffsetXPercent); view.setRotationY(Math.signum(position) * (float)(Math.log(Math.abs(position) + 1) / Math.log(3) * - mYProjection)); view.setScaleY(1 + mScaleYFactor * Math.abs(position)); }
Example 12
Source File: BackgroundToForegroundTransformer.java From PowerFileExplorer with GNU General Public License v3.0 | 5 votes |
@Override protected void onTransform(View view, float position) { final float height = view.getHeight(); final float width = view.getWidth(); final float scale = min(position < 0 ? 1f : Math.abs(1f - position), 0.5f); view.setScaleX(scale); view.setScaleY(scale); view.setPivotX(width * 0.5f); view.setPivotY(height * 0.5f); view.setTranslationX(position < 0 ? width * position : -width * position * 0.25f); }
Example 13
Source File: GrowEffect.java From JazzyListView with Apache License 2.0 | 5 votes |
@Override public void initView(View item, int position, int scrollDirection) { item.setPivotX(item.getWidth() / 2); item.setPivotY(item.getHeight() / 2); item.setScaleX(INITIAL_SCALE_FACTOR); item.setScaleY(INITIAL_SCALE_FACTOR); }
Example 14
Source File: BackgroundToForegroundTransformer.java From Banner with Apache License 2.0 | 5 votes |
@Override protected void onTransform(View view, float position) { final float height = view.getHeight(); final float width = view.getWidth(); final float scale = min(position < 0 ? 1f : Math.abs(1f - position), 0.5f); view.setScaleX(scale); view.setScaleY(scale); view.setPivotX(width * 0.5f); view.setPivotY(height * 0.5f); view.setTranslationX(position < 0 ? width * position : -width * position * 0.25f); }
Example 15
Source File: RotateUpTransformer.java From WanAndroid with GNU General Public License v3.0 | 5 votes |
@Override protected void onTransform(View view, float position) { final float width = view.getWidth(); final float rotation = ROT_MOD * position; view.setPivotX(width * 0.5f); view.setPivotY(0f); view.setTranslationX(0f); view.setRotation(rotation); }
Example 16
Source File: TabletTransformer.java From WanAndroid with GNU General Public License v3.0 | 5 votes |
@Override protected void onTransform(View view, float position) { final float rotation = (position < 0 ? 30f : -30f) * Math.abs(position); view.setTranslationX(getOffsetXForRotation(rotation, view.getWidth(), view.getHeight())); view.setPivotX(view.getWidth() * 0.5f); view.setPivotY(0); view.setRotationY(rotation); }
Example 17
Source File: FlipHorizontalTransformer.java From PageTransformerHelp with Apache License 2.0 | 5 votes |
@Override protected void onTransform(View view, float position) { final float rotation = 180f * position; view.setAlpha(rotation > 90f || rotation < -90f ? 0 : 1); view.setPivotX(view.getWidth() * 0.5f); view.setPivotY(view.getHeight() * 0.5f); view.setRotationY(rotation); }
Example 18
Source File: ScaleInOutTransformer.java From HomeApplianceMall with MIT License | 5 votes |
@Override protected void onTransform(View view, float position) { view.setPivotX(position < 0 ? 0 : view.getWidth()); view.setPivotY(view.getHeight() / 2f); float scale = position < 0 ? 1f + position : 1f - position; view.setScaleX(scale); view.setScaleY(scale); }
Example 19
Source File: EasyZoomInTransformer.java From EasyTabs with MIT License | 5 votes |
@Override protected void onTransform(View view, float position) { final float scale = position < 0 ? position + 1f : Math.abs(1f - position); view.setScaleX(scale); view.setScaleY(scale); view.setPivotX(view.getWidth() * 0.5f); view.setPivotY(view.getHeight() * 0.5f); view.setAlpha(position < -1f || position > 1f ? 0f : 1f - (scale - 1f)); }
Example 20
Source File: RotatePageTransformer.java From ViewPager with Apache License 2.0 | 4 votes |
private void rotate(View view, float rotation) { view.setPivotX(view.getWidth()*0.5f); view.setPivotY(view.getHeight()); view.setRotation(rotation); }