在Android中,是否可以应用动画layout_gravity?例如,假设我想要从右到左改变layout_gravitya View(例如Button)
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_gravity="right|top" />
</FrameLayout>
Run Code Online (Sandbox Code Playgroud)
在上面的布局文件中,我希望通过动画将布局重力从运动时right|top更改left|top为运行时,是否可以?谢谢