我必须设计一个如下所示的布局 -
如图所示 - 布局有两个视图(相对布局)
在其中一个视图上滑动时,视图应该缩放。
我试过的是 -
在滑动时 - 为视图设置动画并缩放。
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:fillEnabled="true" >
<scale
android:duration="2000"
android:fromXScale="1.0"
android:fromYScale="1.0"
android:pivotX="50%"
android:pivotY="100%"
android:toXScale="1.0"
android:toYScale="2.0" />
</set>
这很有效。
我想知道是否有更好的办法吗?
为此任何可重复使用/内置的组件?