在我的Android应用程序中,我想在imageView上设置alpha效果。我想将imageView从alpha值0.0设置为1.0,以便imageView逐渐变为可见。
我的动画xml在这里给出:
的
的<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fillEnabled="true" android:fillAfter="true">
<alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="1200"/>
</set>
现在我想为可见性设定方向。我希望imageView将从左侧和右侧开始可视化。我怎样才能为此设定方向?...使用“pivot”或其他东西!