Java Code Examples for android.view.View#setPivotX()
The following examples show how to use
android.view.View#setPivotX() .
These examples are extracted from open source projects.
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 Project: BannerPager File: BaseTransformer.java License: 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 2
Source Project: UltimateAndroid File: ABaseTransformer.java License: 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 3
Source Project: CoolViewPager File: VerticalRotateTransformer.java License: 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 4
Source Project: Kernel-Tuner File: FragmentTransactionExtended.java License: 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 Project: TurboLauncher File: PagedView.java License: 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 6
Source Project: OmegaRecyclerView File: RotateDownTransformer.java License: 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 7
Source Project: EasyTabs File: EasyZoomInTransformer.java License: 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 8
Source Project: HomeApplianceMall File: ScaleInOutTransformer.java License: 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 9
Source Project: PageTransformerHelp File: FlipHorizontalTransformer.java License: 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 10
Source Project: WanAndroid File: TabletTransformer.java License: 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 11
Source Project: WanAndroid File: RotateUpTransformer.java License: 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 12
Source Project: Banner File: BackgroundToForegroundTransformer.java License: 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 13
Source Project: PageTransformerHelp File: FlipVerticalTransformer.java License: 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 14
Source Project: JazzyListView File: GrowEffect.java License: 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 15
Source Project: PowerFileExplorer File: BackgroundToForegroundTransformer.java License: 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 16
Source Project: carouselview File: CoverFlowViewTransformer.java License: 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 17
Source Project: Hillffair17 File: RotateDownPageTransformer.java License: 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 18
Source Project: Banner File: CubeInTransformer.java License: 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 19
Source Project: Expert-Android-Programming File: RegisterActivity.java License: 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 20
Source Project: ViewPager File: RotatePageTransformer.java License: 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); }