我想使用 ScaleAnimation (不在 xml 中编程)将高度更改为查看从0到60% 的父高度。视图宽度为常数,为50px。视图为空,只设置了背景颜色。
有人能给我的代码 scaleAnim
使用 ScaleAnimation 从代码。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/layContainer
>
<View
android:layout_width="50px"
android:layout_height="fill_parent"
android:id="@+id/viewContainer"
android:background:"#00f00"
/>
</LinearLayout>
ScaleAnimation scaleAnim = new ScaleAnimation(...);
动画前后视图 。谢谢