android.view.animation.Transformation.compose()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(100)

本文整理了Java中android.view.animation.Transformation.compose()方法的一些代码示例,展示了Transformation.compose()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Transformation.compose()方法的具体详情如下:
包路径:android.view.animation.Transformation
类名称:Transformation
方法名:compose

Transformation.compose介绍

暂无

代码示例

代码示例来源:origin: nanchen2251/RxJava2Examples

@Override
  protected void applyTransformation(float interpolatedTime, Transformation t) {
    t.compose(mTransformation);
    super.applyTransformation(interpolatedTime, t);
  }
}

代码示例来源:origin: nanchen2251/CoordinatorAppBarDemo

@Override
  protected void applyTransformation(float interpolatedTime, Transformation t) {
    t.compose(mTransformation);
    super.applyTransformation(interpolatedTime, t);
  }
}

代码示例来源:origin: nanchen2251/WaveSideBar

@Override
  protected void applyTransformation(float interpolatedTime, Transformation t) {
    t.compose(mTransformation);
    super.applyTransformation(interpolatedTime, t);
  }
}

代码示例来源:origin: stackoverflow.com

private final Transformation mTransformation;

public ListView3d(Context context, AttributeSet attrs) {
  super(context, attrs);
  if (!isInEditMode()) {
    setStaticTransformationsEnabled(true);
    mTransformation = new Transformation();
    mTransformation.setTransformationType(Transformation.TYPE_MATRIX);
  } else {
    mTransformation = null;
  }       
}

@Override
protected boolean getChildStaticTransformation(View child, Transformation t) {
  mTransformation.getMatrix().reset();
  final int childTop = Math.max(0,child.getTop());
  final int parentHeight = getHeight();
  final float scale = (float)(parentHeight-(childTop/2))/getHeight();
  Log.i("scale",scale+"");
  final float px = child.getLeft() + (child.getWidth()) / 2;
  final float py = child.getTop() + (child.getHeight()) / 2;
  mTransformation.getMatrix().postScale(scale, scale, px, py);
  t.compose(mTransformation);
  return true;
}

代码示例来源:origin: stackoverflow.com

t.compose(mTransformation);
return true;

相关文章