我正在尝试在Android中的形状上创建"填充"动画.它应该开始完全不可见,然后逐渐从底部"填满",如下所示:

我特意尝试动画的是一个像这样的圆圈:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#666666"/>
<size
android:width="120dp"
android:height="120dp"/>
</shape>
Run Code Online (Sandbox Code Playgroud)
我已经检查了AlphaAnimation,RotateAnimation,ScaleAnimation和TranslateAnimation(动画的子类),但我找不到使用它们的方法.