Example usage for android.widget TextView getScaleX

List of usage examples for android.widget TextView getScaleX

Introduction

In this page you can find the example usage for android.widget TextView getScaleX.

Prototype

@ViewDebug.ExportedProperty(category = "drawing")
public float getScaleX() 

Source Link

Document

The amount that the view is scaled in x around the pivot point, as a proportion of the view's unscaled width.

Usage

From source file:com.android.tv.menu.MenuLayoutManager.java

private void setTempTitleView(TextView dest, TextView src) {
    dest.setVisibility(View.VISIBLE);
    dest.setText(src.getText());// www  .  j  a v  a  2s.c o m
    dest.setTranslationY(0.0f);
    if (src.getVisibility() == View.VISIBLE) {
        dest.setAlpha(src.getAlpha());
        dest.setScaleX(src.getScaleX());
        dest.setScaleY(src.getScaleY());
    } else {
        dest.setAlpha(0.0f);
        dest.setScaleX(1.0f);
        dest.setScaleY(1.0f);
    }
    View parent = (View) src.getParent();
    dest.setLeft(src.getLeft() + parent.getLeft());
    dest.setRight(src.getRight() + parent.getLeft());
    dest.setTop(src.getTop() + parent.getTop());
    dest.setBottom(src.getBottom() + parent.getTop());
}